-
Notifications
You must be signed in to change notification settings - Fork 0
/
WinAMBurner.csproj
64 lines (56 loc) · 2.07 KB
/
WinAMBurner.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon />
<StartupObject />
</PropertyGroup>
<PropertyGroup>
<!--<OutputType>Exe</OutputType>-->
<!--<OutputType>WinExe</OutputType>-->
<!--Use this for WPF or Windows Forms apps-->
<!--<TargetFramework>net5.0</TargetFramework>-->
<!--<TargetFramework>net5.0-windows</TargetFramework>-->
<!--Use this for WPF or Windows Forms apps-->
<!--<PublishSingleFile>true</PublishSingleFile>-->
<!--<SelfContained>true</SelfContained>-->
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<!--<RuntimeIdentifier>win-x64</RuntimeIdentifier>-->
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
<!--Specify the appropriate runtime here-->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IdentityModel" Version="5.1.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="System.IO.Ports" Version="5.0.0" />
<PackageReference Include="System.Management" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<Compile Update="DataSet200.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>DataSet200.xsd</DependentUpon>
</Compile>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Folder Include="Resources\" />
</ItemGroup>
<ItemGroup>
<None Update="DataSet200.xsd">
<Generator>MSDataSetGenerator</Generator>
<LastGenOutput>DataSet200.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
</Project>