You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
826 B
XML
21 lines
826 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DocumentationFile>bin\Debug\netcoreapp3.1\ProductApi.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="nacos-sdk-csharp-unofficial.AspNetCore" Version="0.2.6" />
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="3.1.1" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.5.1" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="Controllers\" />
|
|
<Folder Include="Models\" />
|
|
</ItemGroup>
|
|
</Project>
|