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.
19 lines
584 B
19 lines
584 B
<Project Sdk="Microsoft.NET.Sdk.Web"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>net7.0</TargetFramework> |
|
<Nullable>enable</Nullable> |
|
<ImplicitUsings>enable</ImplicitUsings> |
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<Content Include="Controllers\SolutionController.cs" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.0" /> |
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.17.0" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|