mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-13 15:34:36 +01:00
63 lines
2.2 KiB
XML
63 lines
2.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<IncludeHttpRuleProtos>true</IncludeHttpRuleProtos>
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
<SelfContained>true</SelfContained>
|
|
<IncludeNativeLibrariesForSelfExtract>True</IncludeNativeLibrariesForSelfExtract>
|
|
<Version>0.1.4.2</Version>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="ASodium" Version="0.6.1" />
|
|
<PackageReference Include="DnsClient" Version="1.8.0" />
|
|
<PackageReference Include="Google.Api.CommonProtos" Version="2.15.0" />
|
|
<PackageReference Include="Google.Protobuf.Tools" Version="3.27.3" />
|
|
<PackageReference Include="Grpc.AspNetCore" Version="2.65.0" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
<PackageReference Include="Paseto.Core" Version="1.3.0" />
|
|
<PackageReference Include="PeterO.Cbor" Version="5.0.0-alpha1" />
|
|
<PackageReference Include="SharpZipLib" Version="1.4.2" />
|
|
<PackageReference Include="Sodium.Core" Version="1.4.0-preview.1" />
|
|
<PackageReference Include="System.Net.Http.Formatting.Extension" Version="5.2.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Protobuf Include="Protos\*.*" GrpcServices="Server" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="Views\Shared\error.cshtml" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="Views\Shared\error.cshtml" />
|
|
<None Include="wwwroot\admin\assets\login.css" />
|
|
<None Include="wwwroot\admin\assets\login.jpg" />
|
|
<None Include="wwwroot\admin\assets\style.css" />
|
|
<None Include="wwwroot\admin\dashbrd.html" />
|
|
<None Include="wwwroot\admin\index.html" />
|
|
<None Include="wwwroot\admin\nav.html" />
|
|
<None Include="wwwroot\nikke_launcher\index.html" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="gameconfig.json">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="gameversion.json">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="site.pfx">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="wwwroot\**\*">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project>
|