Skip to content

Commit 92f709e

Browse files
authored
Add files via upload
Initial commit.
1 parent 9852e96 commit 92f709e

16 files changed

+1666
-0
lines changed

App.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6"/>
5+
</startup>
6+
</configuration>

DiscreteDeviceAssigner.csproj

Lines changed: 152 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,152 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{F2A2FC53-F5E9-4350-8D9B-98269DF4C9B1}</ProjectGuid>
8+
<OutputType>WinExe</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>DiscreteDeviceAssigner</RootNamespace>
11+
<AssemblyName>DiscreteDeviceAssigner</AssemblyName>
12+
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
15+
<TargetFrameworkProfile />
16+
<IsWebBootstrapper>false</IsWebBootstrapper>
17+
<PublishUrl>publish\</PublishUrl>
18+
<Install>true</Install>
19+
<InstallFrom>Disk</InstallFrom>
20+
<UpdateEnabled>false</UpdateEnabled>
21+
<UpdateMode>Foreground</UpdateMode>
22+
<UpdateInterval>7</UpdateInterval>
23+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
24+
<UpdatePeriodically>false</UpdatePeriodically>
25+
<UpdateRequired>false</UpdateRequired>
26+
<MapFileExtensions>true</MapFileExtensions>
27+
<ApplicationRevision>0</ApplicationRevision>
28+
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
29+
<UseApplicationTrust>false</UseApplicationTrust>
30+
<BootstrapperEnabled>true</BootstrapperEnabled>
31+
</PropertyGroup>
32+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
33+
<PlatformTarget>AnyCPU</PlatformTarget>
34+
<DebugSymbols>true</DebugSymbols>
35+
<DebugType>full</DebugType>
36+
<Optimize>false</Optimize>
37+
<OutputPath>bin\Debug\</OutputPath>
38+
<DefineConstants>DEBUG;TRACE</DefineConstants>
39+
<ErrorReport>prompt</ErrorReport>
40+
<WarningLevel>4</WarningLevel>
41+
<Prefer32Bit>false</Prefer32Bit>
42+
</PropertyGroup>
43+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
44+
<PlatformTarget>AnyCPU</PlatformTarget>
45+
<DebugType>pdbonly</DebugType>
46+
<Optimize>true</Optimize>
47+
<OutputPath>bin\Release\</OutputPath>
48+
<DefineConstants>TRACE</DefineConstants>
49+
<ErrorReport>prompt</ErrorReport>
50+
<WarningLevel>4</WarningLevel>
51+
</PropertyGroup>
52+
<PropertyGroup>
53+
<TargetZone>LocalIntranet</TargetZone>
54+
</PropertyGroup>
55+
<PropertyGroup>
56+
<GenerateManifests>false</GenerateManifests>
57+
</PropertyGroup>
58+
<PropertyGroup>
59+
<ApplicationManifest>Properties\app.manifest</ApplicationManifest>
60+
</PropertyGroup>
61+
<ItemGroup>
62+
<Reference Include="Microsoft.HyperV.PowerShell.Objects, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
63+
<SpecificVersion>False</SpecificVersion>
64+
<HintPath>C:\Windows\Microsoft.NET\assembly\GAC_MSIL\Microsoft.HyperV.PowerShell.Objects\v4.0_10.0.0.0__31bf3856ad364e35\Microsoft.HyperV.PowerShell.Objects.dll</HintPath>
65+
</Reference>
66+
<Reference Include="Microsoft.Management.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
67+
<SpecificVersion>False</SpecificVersion>
68+
<HintPath>C:\Windows\Microsoft.NET\assembly\GAC_MSIL\Microsoft.Management.Infrastructure\v4.0_1.0.0.0__31bf3856ad364e35\Microsoft.Management.Infrastructure.dll</HintPath>
69+
</Reference>
70+
<Reference Include="System" />
71+
<Reference Include="System.Core" />
72+
<Reference Include="System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
73+
<SpecificVersion>False</SpecificVersion>
74+
<HintPath>C:\Program Files (x86)\Reference Assemblies\Microsoft\WindowsPowerShell\3.0\System.Management.Automation.dll</HintPath>
75+
</Reference>
76+
<Reference Include="System.Xml.Linq" />
77+
<Reference Include="System.Data.DataSetExtensions" />
78+
<Reference Include="Microsoft.CSharp" />
79+
<Reference Include="System.Data" />
80+
<Reference Include="System.Deployment" />
81+
<Reference Include="System.Drawing" />
82+
<Reference Include="System.Net.Http" />
83+
<Reference Include="System.Windows.Forms" />
84+
<Reference Include="System.Xml" />
85+
</ItemGroup>
86+
<ItemGroup>
87+
<Compile Include="MainForm.cs">
88+
<SubType>Form</SubType>
89+
</Compile>
90+
<Compile Include="MainForm.Designer.cs">
91+
<DependentUpon>MainForm.cs</DependentUpon>
92+
</Compile>
93+
<Compile Include="PnpDeviceForm.cs">
94+
<SubType>Form</SubType>
95+
</Compile>
96+
<Compile Include="PnpDeviceForm.Designer.cs">
97+
<DependentUpon>PnpDeviceForm.cs</DependentUpon>
98+
</Compile>
99+
<Compile Include="PowerShellWrapper.cs" />
100+
<Compile Include="Program.cs" />
101+
<Compile Include="Properties\AssemblyInfo.cs" />
102+
<EmbeddedResource Include="MainForm.resx">
103+
<DependentUpon>MainForm.cs</DependentUpon>
104+
</EmbeddedResource>
105+
<EmbeddedResource Include="PnpDeviceForm.resx">
106+
<DependentUpon>PnpDeviceForm.cs</DependentUpon>
107+
</EmbeddedResource>
108+
<EmbeddedResource Include="Properties\Resources.resx">
109+
<Generator>ResXFileCodeGenerator</Generator>
110+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
111+
<SubType>Designer</SubType>
112+
</EmbeddedResource>
113+
<Compile Include="Properties\Resources.Designer.cs">
114+
<AutoGen>True</AutoGen>
115+
<DependentUpon>Resources.resx</DependentUpon>
116+
<DesignTime>True</DesignTime>
117+
</Compile>
118+
<None Include="Properties\app.manifest" />
119+
<None Include="Properties\Settings.settings">
120+
<Generator>SettingsSingleFileGenerator</Generator>
121+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
122+
</None>
123+
<Compile Include="Properties\Settings.Designer.cs">
124+
<AutoGen>True</AutoGen>
125+
<DependentUpon>Settings.settings</DependentUpon>
126+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
127+
</Compile>
128+
</ItemGroup>
129+
<ItemGroup>
130+
<None Include="App.config" />
131+
</ItemGroup>
132+
<ItemGroup>
133+
<BootstrapperPackage Include=".NETFramework,Version=v4.6">
134+
<Visible>False</Visible>
135+
<ProductName>Microsoft .NET Framework 4.6 %28x86 和 x64%29</ProductName>
136+
<Install>true</Install>
137+
</BootstrapperPackage>
138+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
139+
<Visible>False</Visible>
140+
<ProductName>.NET Framework 3.5 SP1</ProductName>
141+
<Install>false</Install>
142+
</BootstrapperPackage>
143+
</ItemGroup>
144+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
145+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
146+
Other similar extension points exist, see Microsoft.Common.targets.
147+
<Target Name="BeforeBuild">
148+
</Target>
149+
<Target Name="AfterBuild">
150+
</Target>
151+
-->
152+
</Project>

0 commit comments

Comments
 (0)