-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpacebar.API.csproj
40 lines (35 loc) · 1.63 KB
/
Spacebar.API.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<EnableDefaultContentItems>false</EnableDefaultContentItems>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<DebugSymbols>False</DebugSymbols>
<DebugType>None</DebugType>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Spacebar.ConfigModel\Spacebar.ConfigModel.csproj" />
<ProjectReference Include="..\Spacebar.Static\Spacebar.Static.csproj" />
<ProjectReference Include="..\Spacebar.Util.Db\Spacebar.Util.Db.csproj" />
<ProjectReference Include="..\Spacebar.Util\Spacebar.Util.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ArcaneLibs" Version="1.0.0-preview3020494760.012ed3f" />
<PackageReference Include="BCrypt.Net-Core" Version="1.6.0" />
<PackageReference Include="IdGen" Version="3.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="7.0.5" />
<PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="7.0.0" />
<PackageReference Include="Sentry.AspNetCore" Version="3.30.0" />
</ItemGroup>
<ItemGroup>
<Content Include="Resources\**" CopyToOutputDirectory="Always" />
</ItemGroup>
<ItemGroup>
<Folder Include="Controllers\API\v1" />
<Folder Include="Resources\Private" />
<Folder Include="Tasks\Startup" />
</ItemGroup>
</Project>