-
Notifications
You must be signed in to change notification settings - Fork 0
/
DirectSSTPTester.csproj
36 lines (30 loc) · 1.01 KB
/
DirectSSTPTester.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows7.0</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<StartupObject>DirectSSTPTester.Program</StartupObject>
<ApplicationIcon>Resources\icon.ico</ApplicationIcon>
<NoWin32Manifest>true</NoWin32Manifest>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<FileVersion>1.5.0.0</FileVersion>
<Version>$(VersionPrefix)1.5.0</Version>
<PackageLicenseExpression>CC0-1.0</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<Compile Remove="SSTPLib\**" />
<EmbeddedResource Remove="SSTPLib\**" />
<None Remove="SSTPLib\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Text.Encoding.CodePages" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="SSTPLib\SSTPLib.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="FormMain.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup>
</Project>