-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathOpenXmlToHtmlOpenApi.csproj
More file actions
26 lines (22 loc) · 971 Bytes
/
OpenXmlToHtmlOpenApi.csproj
File metadata and controls
26 lines (22 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<UserSecretsId>fd376f00-03ce-419b-883f-bfa8af935ee4</UserSecretsId>
<Version Condition="'$(CURRENT_VERSION)' != ''">$(CURRENT_VERSION)</Version>
<Version Condition="'$(CURRENT_VERSION)' == ''">0.0.1</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<PackageVersion>$(Version)</PackageVersion>
</PropertyGroup>
<PropertyGroup>
<DocumentationFile>.\OpenXmlToHtmlOpenApi\OpenXmlToHtmlOpenApi.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Codeuctivity.HtmlRenderer" Version="4.0.458" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.23.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\OpenXmlToHtml\OpenXmlToHtml.csproj" />
</ItemGroup>
</Project>