35 lines
1.2 KiB
XML
35 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<RootNamespace>gaseous_server</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(RunConfiguration)' == 'https' " />
|
|
<PropertyGroup Condition=" '$(RunConfiguration)' == 'http' " />
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="7.0.3" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\gaseous-tools\gaseous-tools.csproj">
|
|
<GlobalPropertiesToRemove></GlobalPropertiesToRemove>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\gaseous-romsignatureobject\gaseous-romsignatureobject.csproj">
|
|
<GlobalPropertiesToRemove></GlobalPropertiesToRemove>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Remove="Controllers\" />
|
|
<None Remove="Models\" />
|
|
<None Remove="Models\Signatures.Status" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="Controllers\" />
|
|
<Folder Include="Models\" />
|
|
</ItemGroup>
|
|
</Project>
|