-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHTTP-FileServer.csproj
60 lines (50 loc) · 1.88 KB
/
HTTP-FileServer.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows10.0.26100.0</TargetFramework>
<RootNamespace>Server</RootNamespace>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAot>true</PublishAot>
<InvariantGlobalization>true</InvariantGlobalization>
<SupportedOSPlatformVersion>10.0.22621.0</SupportedOSPlatformVersion>
<ApplicationIcon>shell32_241.ico</ApplicationIcon>
<PlatformTarget>x64</PlatformTarget>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
<NoWarn>1701;1702;IDE0130;CS0618;CS8500;CA2014</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;IDE0130;CS0618;CS8500;CA2014</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="lib\**" />
<EmbeddedResource Remove="lib\**" />
<None Remove="lib\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Program\_InitializeWorker.cs" />
<Compile Remove="Program\_Shutdown.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="shell32_241.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BouncyCastle.Cryptography" Version="2.5.1" />
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="9.0.2" />
</ItemGroup>
<ItemGroup>
<Folder Include="Program\Logging\" />
<Folder Include="Program\HTTP\" />
</ItemGroup>
<ItemGroup>
<Reference Include="HWRand.Net">
<HintPath>lib\HWRand.Net.dll</HintPath>
</Reference>
<Reference Include="System.Data.SQLite">
<HintPath>lib\System.Data.SQLite.dll</HintPath>
</Reference>
</ItemGroup>
</Project>