-
-
Notifications
You must be signed in to change notification settings - Fork 126
Expand file tree
/
Copy pathSimpleIdServer.ScimSwaggerV6.Startup.csproj
More file actions
24 lines (24 loc) · 1.26 KB
/
SimpleIdServer.ScimSwaggerV6.Startup.csproj
File metadata and controls
24 lines (24 loc) · 1.26 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="5.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="5.0.9" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="5.0.3" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.3.0 " />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SimpleIdServer.Scim.SwashbuckleV6\SimpleIdServer.Scim.SwashbuckleV6.csproj" />
<ProjectReference Include="..\SimpleIdServer.Scim\SimpleIdServer.Scim.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="oauth_puk.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ProjectExtensions><VisualStudio><UserProperties schemas_4enterpriseuserschema_1json__JsonSchema="https://carafe.fm/schema/draft-02/bundle.schema.json" /></VisualStudio></ProjectExtensions>
</Project>