-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReadFolder.csproj
More file actions
43 lines (39 loc) · 1.66 KB
/
Copy pathReadFolder.csproj
File metadata and controls
43 lines (39 loc) · 1.66 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<RootNamespace>ReadFolder</RootNamespace>
<AssemblyName>ReadFolder</AssemblyName>
<Product>ReadFolder</Product>
<Title>ReadFolder</Title>
<ApplicationIcon>asset\RF-LOGO-samll.ico</ApplicationIcon>
<DefaultItemExcludes>$(DefaultItemExcludes);build-obj\**;build-obj-publish\**;dist\**;dist-debug\**;publish-installer\**</DefaultItemExcludes>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<None Remove="asset\RF-LOGO.ico" />
<None Remove="asset\RF-LOGO-samll.ico" />
<None Remove="asset\RF-LOGO-24.png" />
<None Remove="asset\RF-LOGO-28.png" />
<None Remove="asset\RF-LOGO-samll.png" />
<None Remove="asset\RF-LOGO.png" />
<Resource Include="asset\RF-LOGO.ico" />
<Resource Include="asset\RF-LOGO-samll.ico" />
<Resource Include="asset\RF-LOGO-24.png" />
<Resource Include="asset\RF-LOGO-28.png" />
<Resource Include="asset\RF-LOGO-samll.png" />
<Resource Include="asset\RF-LOGO.png" />
<None Include="README.md"
CopyToOutputDirectory="PreserveNewest"
CopyToPublishDirectory="PreserveNewest"
ExcludeFromSingleFile="true" />
</ItemGroup>
</Project>