27 lines
1011 B
XML
27 lines
1011 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<LangVersion>10</LangVersion>
|
|
<RootNamespace>BlueWest.WebApi</RootNamespace>
|
|
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Grpc.AspNetCore" Version="2.41.0" />
|
|
<PackageReference Include="Grpc.AspNetCore.Server" Version="2.41.0" />
|
|
<PackageReference Include="Grpc.AspNetCore.Web" Version="2.41.0" />
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="6.0.2" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.6.3" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore.Swagger" Version="6.2.3" />
|
|
<PackageReference Include="Microsoft.AspNetCore.App" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\BlueWest.Data\BlueWest.Data.csproj" />
|
|
<ProjectReference Include="..\BlueWest\BlueWest.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
</Project>
|