mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-15 15:19:57 +00:00
31 lines
1.3 KiB
XML
31 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>$(TargetFrameworkVersion);$(TargetFrameworkVersionWindows)</TargetFrameworks>
|
|
<Nullable>enable</Nullable>
|
|
<LangVersion>preview</LangVersion>
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
<Platforms>AnyCPU;x64;x86</Platforms>
|
|
<!-- Enable cross-compilation for Windows from Linux -->
|
|
<EnableWindowsTargeting>true</EnableWindowsTargeting>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
<DebugType>none</DebugType>
|
|
<DebugSymbols>false</DebugSymbols>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="MemoryPack" />
|
|
<PackageReference Include="MemoryPack.Generator">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" />
|
|
<PackageReference Include="Microsoft.Extensions.Http" />
|
|
<PackageReference Include="Photino.Blazor" />
|
|
<PackageReference Include="SystemExtensions.NetCore" />
|
|
<PackageReference Include="SystemExtensions.NetStandard.DependencyInjection" />
|
|
<PackageReference Include="SystemExtensions.NetStandard.Generators" PrivateAssets="all" />
|
|
<PackageReference Include="TrailBlazr" />
|
|
</ItemGroup>
|
|
</Project> |