mirror of
https://github.com/spacebarchat/server.git
synced 2026-05-31 04:54:18 +00:00
28 lines
1.3 KiB
XML
28 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="ArcaneLibs" Version="1.0.1-preview.20260420-212318"/>
|
|
<!-- i dont think native performance here is worth it? -->
|
|
<PackageReference Include="Magick.NET-Q16-HDRI-AnyCPU" Version="14.13.1" />
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.8" />
|
|
</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'"/>
|
|
<ProjectReference Include="..\Models\Spacebar.Models.Db\Spacebar.Models.Db.csproj" Condition="'$(ContinuousIntegrationBuild)'!='true'"/>
|
|
<PackageReference Include="Spacebar.Models.Db" Version="*-preview*" Condition="'$(ContinuousIntegrationBuild)'=='true'"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Helpers\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|