-
-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy pathDemo.csproj
40 lines (33 loc) · 1.09 KB
/
Demo.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFrameworks>net6.0-windows</TargetFrameworks>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>SmartFormat.Demo.ico</ApplicationIcon>
<NoWarn>$(NoWarn);1591,1573</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Remove="ThirdParty\RTFLib\Readme.txt" />
</ItemGroup>
<ItemGroup>
<Content Include="ThirdParty\RTFLib\Readme.txt" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SmartFormat.Net\SmartFormat.Net.csproj" />
<ProjectReference Include="..\SmartFormat.Tests\SmartFormat.Tests.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="SmartFormatDemo.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="SmartFormatDemo.Designer.cs">
<DependentUpon>SmartFormatDemo.cs</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="SmartFormatDemo.resx">
<SubType>Designer</SubType>
<DependentUpon>SmartFormatDemo.cs</DependentUpon>
</EmbeddedResource>
</ItemGroup>
</Project>