FastTunnel/FastTunnel.Server/FastTunnel.Server.csproj

45 lines
1.6 KiB
XML
Raw Normal View History

2022-04-25 14:21:39 +08:00
<Project Sdk="Microsoft.NET.Sdk.Web">
2020-11-01 00:07:31 +08:00
2022-06-23 16:19:27 +08:00
<PropertyGroup>
2024-01-16 13:57:10 +08:00
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<InvariantGlobalization>true</InvariantGlobalization>
2022-06-23 16:19:27 +08:00
</PropertyGroup>
2021-09-01 21:21:09 +08:00
2022-06-23 16:19:27 +08:00
<ItemGroup>
<Compile Remove="logs\**" />
<Content Remove="logs\**" />
<EmbeddedResource Remove="logs\**" />
<None Remove="logs\**" />
</ItemGroup>
2021-08-18 23:56:58 +08:00
2022-06-23 16:19:27 +08:00
<ItemGroup>
2024-01-16 13:57:10 +08:00
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Configuration" Version="8.0.0" />
<PackageReference Include="Serilog.AspNetCore" Version="8.0.0" />
2022-06-23 16:19:27 +08:00
</ItemGroup>
2021-09-01 21:21:09 +08:00
2024-01-16 13:57:10 +08:00
<!--<ItemGroup Condition="'$(Configuration)'=='Debug'">
2023-03-22 09:43:27 +08:00
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="6.5.0" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="6.5.0" />
2024-01-16 13:57:10 +08:00
</ItemGroup>-->
2023-03-23 14:29:13 +08:00
2022-06-23 16:19:27 +08:00
<ItemGroup>
<ProjectReference Include="..\FastTunnel.Core\FastTunnel.Core.csproj" />
</ItemGroup>
2020-11-01 00:07:31 +08:00
2022-06-23 16:19:27 +08:00
<ItemGroup>
<None Update="uninstall.bat">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="install.bat">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
2022-07-10 22:34:13 +08:00
<ProjectExtensions><VisualStudio><UserProperties config_4appsettings_1development_1json__JsonSchema="https://json.schemastore.org/appsettings.json" /></VisualStudio></ProjectExtensions>
2019-12-16 10:29:06 +08:00
</Project>