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.
48 lines
2.2 KiB
48 lines
2.2 KiB
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<LangVersion>10</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(RunConfiguration)' == 'https' " />
|
|
<PropertyGroup Condition=" '$(RunConfiguration)' == 'http' " />
|
|
<PropertyGroup Condition=" '$(RunConfiguration)' == 'RestFull' " />
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<WarningLevel>4</WarningLevel>
|
|
<DocumentationFile>bin\Debug\net6.0\BowlingApi.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<!--<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="7.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="Swashbuckle.AspNetCore" Version="6.4.0" />
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.11" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.13" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.13">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.13" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\BowlingService\BowlingService.csproj" />
|
|
<ProjectReference Include="..\Mapper\Mapper.csproj" />
|
|
|
|
<ProjectReference Include="..\DTOs\DTOs.csproj">
|
|
<GlobalPropertiesToRemove></GlobalPropertiesToRemove>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Microsoft.VisualStudio.Web.CodeGeneration.Design" />
|
|
<None Remove="Microsoft.EntityFrameworkCore.SqlServer" />
|
|
<None Remove="Microsoft.EntityFrameworkCore.Tools" />
|
|
<None Remove="Microsoft.EntityFrameworkCore.Sqlite" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|