-
Notifications
You must be signed in to change notification settings - Fork 654
Expand file tree
/
Copy pathTitanium.Web.Proxy.Examples.WindowsService.csproj
More file actions
41 lines (36 loc) · 1.58 KB
/
Copy pathTitanium.Web.Proxy.Examples.WindowsService.csproj
File metadata and controls
41 lines (36 loc) · 1.58 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<RootNamespace>Titanium.Web.Proxy.Examples.WindowsService</RootNamespace>
<AssemblyName>Titanium.Web.Proxy.Examples.WindowsService</AssemblyName>
<ApplicationIcon>app.ico</ApplicationIcon>
<AssemblyTitle>Titanium Web Proxy</AssemblyTitle>
<Product>Titanium Web Proxy</Product>
<UserSecretsId>3c9a9e1e-6c5b-4f9d-8f2a-6a2f6f8b8b6a</UserSecretsId>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="10.0.0" />
<PackageReference Include="Serilog.Extensions.Hosting" Version="9.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
<PackageReference Include="Serilog.Sinks.EventLog" Version="4.0.0" />
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Titanium.Web.Proxy\Titanium.Web.Proxy.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="install.ps1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="remove.ps1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>