|
4 | 4 | <TargetFramework>net6.0</TargetFramework> |
5 | 5 | <ImplicitUsings>enable</ImplicitUsings> |
6 | 6 | <Nullable>enable</Nullable> |
7 | | - <GeneratePackageOnBuild>True</GeneratePackageOnBuild> |
| 7 | + <IncludeSymbols>True</IncludeSymbols> |
| 8 | + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
| 9 | + <GenerateDocumentationFile>True</GenerateDocumentationFile> |
| 10 | + |
8 | 11 | <Title>$(AssemblyName) Html Generator</Title> |
9 | 12 | <Authors>Remco Schoeman</Authors> |
10 | 13 | <Description>A small and simple no guardrails html generator library for .NET 6+</Description> |
|
16 | 19 | <PackageTags>html template generator</PackageTags> |
17 | 20 | <PackageOutputPath>$(OutputPath)</PackageOutputPath> |
18 | 21 | <PackageLicenseFile>LICENSE.txt</PackageLicenseFile> |
19 | | - <IncludeSymbols>True</IncludeSymbols> |
20 | 22 | <PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance> |
21 | | - <GenerateDocumentationFile>True</GenerateDocumentationFile> |
22 | | - <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
23 | | - <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
24 | | - </PropertyGroup> |
| 23 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 24 | + <EnablePackageValidation>true</EnablePackageValidation> |
25 | 25 |
|
26 | | - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
27 | | - <DebugType>portable</DebugType> |
| 26 | + <DebugType>portable</DebugType> |
28 | 27 | </PropertyGroup> |
29 | | - |
30 | | - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
31 | | - <DebugType>portable</DebugType> |
| 28 | + |
| 29 | + <PropertyGroup> |
| 30 | + <MinVerTagPrefix>v</MinVerTagPrefix> |
32 | 31 | </PropertyGroup> |
33 | 32 |
|
34 | 33 | <ItemGroup> |
35 | 34 | <PackageReference Include="DotNet.ReproducibleBuilds" Version="1.1.1"> |
36 | 35 | <PrivateAssets>all</PrivateAssets> |
37 | 36 | <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> |
38 | 37 | </PackageReference> |
| 38 | + <PackageReference Include="MinVer" Version="4.3.0"> |
| 39 | + <PrivateAssets>all</PrivateAssets> |
| 40 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 41 | + </PackageReference> |
39 | 42 | </ItemGroup> |
40 | 43 |
|
41 | 44 | <ItemGroup> |
|
0 commit comments