mirror of
https://github.com/snltty/linker.git
synced 2025-10-08 10:30:08 +08:00
70 lines
3.0 KiB
XML
70 lines
3.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFrameworks>net8.0</TargetFrameworks>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>disable</Nullable>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<ApplicationIcon>favicon.ico</ApplicationIcon>
|
|
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
|
|
<Configurations>Debug;Release</Configurations>
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
<PublishAot>false</PublishAot>
|
|
<JsonSerializerIsReflectionEnabledByDefault>true</JsonSerializerIsReflectionEnabledByDefault>
|
|
<SignAssembly>true</SignAssembly>
|
|
<EnablePreviewFeatures>true</EnablePreviewFeatures>
|
|
<ServerGarbageCollection>false</ServerGarbageCollection>
|
|
<Title>linker</Title>
|
|
<Authors>snltty</Authors>
|
|
<Company>snltty</Company>
|
|
<Description>1. 总览,和详细流量统计,一眼知道服务器流量花在哪里
|
|
2. 优化信标。减少流量,没有操作时尽量不产生流量</Description>
|
|
<Copyright>snltty</Copyright>
|
|
<PackageProjectUrl>https://github.com/snltty/linker</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/snltty/linker</RepositoryUrl>
|
|
<PackageReleaseNotes>linker</PackageReleaseNotes>
|
|
<Version>1.4.4</Version>
|
|
<AssemblyVersion>1.4.4</AssemblyVersion>
|
|
<FileVersion>1.4.4</FileVersion>
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DebugType>full</DebugType>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DebugType>none</DebugType>
|
|
<DebugSymbols>false</DebugSymbols>
|
|
<Optimize>True</Optimize>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="msquic-openssl.dll" Condition="'$(RuntimeIdentifier)'=='win-x64' or '$(RuntimeIdentifier)'=='win-arm64'">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="msquic.dll" Condition="'$(RuntimeIdentifier)'=='win-x64' or '$(RuntimeIdentifier)'=='win-arm64'">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="Plugins\Tuntap\wintun.dll" Condition="'$(RuntimeIdentifier)'=='win-x64' or '$(RuntimeIdentifier)'=='win-arm64' or '$(Configuration)'=='Debug'">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="snltty.pfx">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\linker.tunnel\linker.tunnel.csproj" />
|
|
<ProjectReference Include="..\linker.libs\linker.libs.csproj" />
|
|
<ProjectReference Include="..\linker.tun\linker.tun.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="LiteDB" Version="5.0.17" />
|
|
<PackageReference Include="MemoryPack" Version="1.10.0" />
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
|
|
<PackageReference Include="System.ServiceProcess.ServiceController" Version="8.0.0" />
|
|
</ItemGroup>
|
|
</Project>
|