-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomissions.app.api.csproj
More file actions
50 lines (46 loc) · 2.43 KB
/
comissions.app.api.csproj
File metadata and controls
50 lines (46 loc) · 2.43 KB
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
41
42
43
44
45
46
47
48
49
50
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<InvariantGlobalization>true</InvariantGlobalization>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
</PropertyGroup>
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Auth0.AspNetCore.Authentication" Version="1.4.1" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.27" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.27"/>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.27" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.27">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.27" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Novu" Version="0.3.3" />
<PackageReference Include="Novu.Extensions" Version="0.3.3" />
<PackageReference Include="Novu.Sync" Version="0.3.3" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.Design" Version="1.1.0" />
<PackageReference Include="Stripe.net" Version="43.12.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0"/>
</ItemGroup>
<ItemGroup>
<None Remove="react\public\favicon.ico" />
<None Remove="react\public\index.html" />
<None Remove="react\public\logo192.png" />
<None Remove="react\public\logo512.png" />
<None Remove="react\public\robots.txt" />
</ItemGroup>
<ItemGroup>
<Content Include="..\.dockerignore">
<Link>.dockerignore</Link>
</Content>
</ItemGroup>
<Target Name="CreateSwaggerJson" AfterTargets="Build">
<Exec Command="dotnet swagger tofile --output ../comissions.app.sdk/swagger.json $(OutputPath)$(AssemblyName).dll v1" WorkingDirectory="$(ProjectDir)" ContinueOnError="true" />
</Target>
</Project>