mirror of
https://github.com/spacebarchat/server.git
synced 2026-05-14 03:15:22 +00:00
21 lines
894 B
XML
21 lines
894 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<RootNamespace>Spacebar.Cdn.Worker</RootNamespace>
|
|
<RunAOTCompilation>true</RunAOTCompilation>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="ArcaneLibs" Version="1.0.1-preview.20260420-212318"/>
|
|
<PackageReference Include="Magick.NET-Q16-AnyCPU" Version="14.12.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Interop\Spacebar.Interop.Cdn.Abstractions\Spacebar.Interop.Cdn.Abstractions.csproj" Condition="'$(ContinuousIntegrationBuild)'!='true'"/>
|
|
<PackageReference Include="Spacebar.Interop.Cdn.Abstractions" Version="*-preview*" Condition="'$(ContinuousIntegrationBuild)'=='true'"/>
|
|
</ItemGroup>
|
|
</Project>
|