|
@@ -1,31 +1,27 @@
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
- <PropertyGroup>
|
|
|
- <TargetFramework>net5.0</TargetFramework>
|
|
|
- </PropertyGroup>
|
|
|
+ <ItemGroup>
|
|
|
+ <PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="6.0.0-*" />
|
|
|
+ <PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.0-*" />
|
|
|
+ <PackageReference Include="DNS" Version="6.1.0" />
|
|
|
+ <ProjectReference Include="..\FastGithub.Core\FastGithub.Core.csproj" />
|
|
|
+ </ItemGroup>
|
|
|
|
|
|
- <ItemGroup>
|
|
|
- <PackageReference Include="DNS" Version="6.1.0" />
|
|
|
- <PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="5.0.0" />
|
|
|
- <PackageReference Include="Microsoft.Extensions.Hosting" Version="5.0.0" />
|
|
|
- <ProjectReference Include="..\FastGithub.Core\FastGithub.Core.csproj" />
|
|
|
- </ItemGroup>
|
|
|
+ <ItemGroup>
|
|
|
+ <None Update="dnscrypt-proxy.toml">
|
|
|
+ <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
+ </None>
|
|
|
+ </ItemGroup>
|
|
|
|
|
|
- <ItemGroup>
|
|
|
- <None Update="dnscrypt-proxy.toml">
|
|
|
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
- </None>
|
|
|
- </ItemGroup>
|
|
|
+ <ItemGroup Condition="'$(RuntimeIdentifier)' == 'win-x64'">
|
|
|
+ <None Update="dnscrypt-proxy.exe">
|
|
|
+ <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
+ </None>
|
|
|
+ </ItemGroup>
|
|
|
|
|
|
- <ItemGroup Condition="'$(RuntimeIdentifier)' == 'win-x64'">
|
|
|
- <None Update="dnscrypt-proxy.exe">
|
|
|
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
- </None>
|
|
|
- </ItemGroup>
|
|
|
-
|
|
|
- <ItemGroup Condition="'$(RuntimeIdentifier)' == 'linux-x64'">
|
|
|
- <None Update="dnscrypt-proxy">
|
|
|
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
- </None>
|
|
|
- </ItemGroup>
|
|
|
+ <ItemGroup Condition="'$(RuntimeIdentifier)' == 'linux-x64'">
|
|
|
+ <None Update="dnscrypt-proxy">
|
|
|
+ <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
+ </None>
|
|
|
+ </ItemGroup>
|
|
|
</Project>
|