mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
73 lines
3.0 KiB
XML
73 lines
3.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<AssemblyName>Teknik.IdentityServer</AssemblyName>
|
|
<RootNamespace>Teknik.IdentityServer</RootNamespace>
|
|
<RuntimeIdentifiers>win-x86;win-x64;linux-x64;linux-arm;osx-x64</RuntimeIdentifiers>
|
|
<Configurations>Debug;Release;Test</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Data\Migrations\IdentityServer\ConfigurationDb\ConfigurationDbContext.sql" />
|
|
<None Remove="Data\Migrations\IdentityServer\PersistedGrantDb\PersistedGrantDbContext.sql" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Middleware\" />
|
|
<Folder Include="wwwroot\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="IdentityServer4" Version="4.1.2" />
|
|
<PackageReference Include="IdentityServer4.AccessTokenValidation" Version="3.0.1" />
|
|
<PackageReference Include="IdentityServer4.AspNetIdentity" Version="4.1.2" />
|
|
<PackageReference Include="IdentityServer4.EntityFramework" Version="4.1.2" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="5.0.7" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="5.0.7" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="5.0.7" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.7" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.7">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="5.0.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="2.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Data\Migrations\IdentityServer\ConfigurationDb\ConfigurationDbContext.sql" />
|
|
<EmbeddedResource Include="Data\Migrations\IdentityServer\PersistedGrantDb\PersistedGrantDbContext.sql" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Configuration\Configuration.csproj" />
|
|
<ProjectReference Include="..\Logging\Logging.csproj" />
|
|
<ProjectReference Include="..\WebCommon\WebCommon.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Update="App_Data\Config.json">
|
|
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="Images\favicon.ico">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="Images\logo-black.svg">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="Images\logo-blue.svg">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|