You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
793 B
24 lines
793 B
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<RootNamespace>Api_lol</RootNamespace>
|
|
<UserSecretsId>00525c0a-0d72-440c-bf49-1c73c88bc527</UserSecretsId>
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.17.0" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DTO\DTO.csproj" />
|
|
<ProjectReference Include="..\Model\Model.csproj" />
|
|
<ProjectReference Include="..\StubLib\StubLib.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|