mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
35 lines
1 KiB
C#
35 lines
1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Data;
|
|
using System.Windows.Documents;
|
|
using System.Windows.Input;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Imaging;
|
|
using System.Windows.Navigation;
|
|
using System.Windows.Shapes;
|
|
|
|
namespace Cosmos.Build.Windows {
|
|
/// <summary>
|
|
/// Interaction logic for Window1.xaml
|
|
/// </summary>
|
|
public partial class Window1 : Window {
|
|
public Window1() {
|
|
InitializeComponent();
|
|
}
|
|
|
|
//http://aspzone.com/blogs/john/articles/152.aspx
|
|
//http://technet.microsoft.com/en-us/library/ex0ss12c(VS.80).aspx
|
|
|
|
//open key as read only
|
|
//
|
|
//HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework
|
|
//sdkInstallRootv2.0
|
|
//C:\Program Files\Microsoft.NET\SDK\v2.0 64bit\
|
|
//
|
|
//HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\.NETFramework\v2.0
|
|
}
|
|
}
|