summaryrefslogtreecommitdiffstats
path: root/server/src/IOL.GreatOffice.Api.csproj
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2022-06-01 22:10:32 +0200
committerivarlovlie <git@ivarlovlie.no>2022-06-01 22:10:32 +0200
commita640703f2da8815dc26ad1600a6f206be1624379 (patch)
treedbda195fb5783d16487e557e06471cf848b75427 /server/src/IOL.GreatOffice.Api.csproj
downloadgreatoffice-a640703f2da8815dc26ad1600a6f206be1624379.tar.xz
greatoffice-a640703f2da8815dc26ad1600a6f206be1624379.zip
feat: Initial after clean slate
Diffstat (limited to 'server/src/IOL.GreatOffice.Api.csproj')
-rw-r--r--server/src/IOL.GreatOffice.Api.csproj48
1 files changed, 48 insertions, 0 deletions
diff --git a/server/src/IOL.GreatOffice.Api.csproj b/server/src/IOL.GreatOffice.Api.csproj
new file mode 100644
index 0000000..0bd2c48
--- /dev/null
+++ b/server/src/IOL.GreatOffice.Api.csproj
@@ -0,0 +1,48 @@
+<Project Sdk="Microsoft.NET.Sdk.Web">
+
+ <PropertyGroup>
+ <TargetFramework>net6.0</TargetFramework>
+ <RuntimeIdentifier>linux-x64</RuntimeIdentifier>
+ <UserSecretsId>ed5ff3e5-46e2-4d7e-8272-7081f5abfee4</UserSecretsId>
+ <GenerateDocumentationFile>true</GenerateDocumentationFile>
+ <ImplicitUsings>true</ImplicitUsings>
+ <Nullable>disable</Nullable>
+ <NoWarn>CS1591</NoWarn>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="AspNet.Security.OAuth.GitHub" Version="6.0.6" />
+ <PackageReference Include="Duende.IdentityServer" Version="6.1.0" />
+ <PackageReference Include="Duende.IdentityServer.EntityFramework.Storage" Version="6.1.0" />
+ <PackageReference Include="EFCore.NamingConventions" Version="6.0.0" />
+ <PackageReference Include="IOL.Helpers" Version="3.0.0" />
+ <PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning" Version="5.0.0" />
+ <PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer" Version="5.0.0" />
+ <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.5">
+ <PrivateAssets>all</PrivateAssets>
+ <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
+ </PackageReference>
+ <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.4" />
+ <PackageReference Include="Quartz.Extensions.Hosting" Version="3.4.0" />
+ <PackageReference Include="Serilog.AspNetCore" Version="5.0.0" />
+ <PackageReference Include="Serilog.Expressions" Version="3.4.0" />
+ <PackageReference Include="Serilog.Sinks.Seq" Version="5.1.1" />
+ <PackageReference Include="Swashbuckle.AspNetCore" Version="6.3.1" />
+ <PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.3.1" />
+ <PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="6.3.1" />
+ </ItemGroup>
+
+ <ItemGroup Condition="'$(Configuration)' == 'Release'">
+ <Content Remove="AppData" />
+ </ItemGroup>
+
+ <ItemGroup>
+ <Content Include="..\..\README.md">
+ <Link>README.md</Link>
+ </Content>
+ </ItemGroup>
+
+ <ItemGroup>
+ <Folder Include="wwwroot" />
+ </ItemGroup>
+</Project>