Skip to content

Commit 5219db0

Browse files
committed
Add MinVer
1 parent 0efe785 commit 5219db0

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Sources/Directory.Build.props

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
<PropertyGroup>
1515
<RepositoryUrl>https://github.com/kysect/DotnetProjectSystem</RepositoryUrl>
1616
<PackageProjectUrl>https://github.com/kysect/DotnetProjectSystem</PackageProjectUrl>
17-
<Version>1.0.0</Version>
1817
</PropertyGroup>
1918

2019
<!-- Code configuration -->
@@ -29,6 +28,10 @@
2928

3029
<ItemGroup>
3130
<PackageReference Include="Kysect.Editorconfig" />
31+
<PackageReference Include="MinVer">
32+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
33+
<PrivateAssets>all</PrivateAssets>
34+
</PackageReference>
3235
</ItemGroup>
3336

3437
<ItemGroup Condition="$(Configuration) == 'Release'">

Sources/Directory.Packages.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,6 @@
3939
<PackageVersion Include="TestableIO.System.IO.Abstractions.TestingHelpers" Version="21.0.2" />
4040
<PackageVersion Include="xunit" Version="2.8.0" />
4141
<PackageVersion Include="xunit.runner.visualstudio" Version="2.8.0" />
42+
<PackageVersion Include="MinVer" Version="5.0.0" />
4243
</ItemGroup>
4344
</Project>

Sources/Kysect.DotnetProjectSystem.Tests/Kysect.DotnetProjectSystem.Tests.csproj

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
5-
65
<IsPackable>false</IsPackable>
76
<IsTestProject>true</IsTestProject>
87
<NoWarn>$(NoWarn);CA1707</NoWarn>
@@ -17,10 +16,6 @@
1716
<PackageReference Include="Kysect.CommonLib.DependencyInjection" />
1817
<PackageReference Include="Kysect.CommonLib.Testing" />
1918
<PackageReference Include="Microsoft.NET.Test.Sdk" />
20-
<PackageReference Include="coverlet.collector">
21-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
22-
<PrivateAssets>all</PrivateAssets>
23-
</PackageReference>
2419
<PackageReference Include="TestableIO.System.IO.Abstractions.TestingHelpers" />
2520
<PackageReference Include="xunit" />
2621
<PackageReference Include="xunit.runner.visualstudio">

Sources/Kysect.DotnetProjectSystem/Kysect.DotnetProjectSystem.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFramework>netstandard2.0</TargetFramework>
4+
<IsPackable>true</IsPackable>
45
</PropertyGroup>
56
<ItemGroup>
67
<PackageReference Include="GuiLabs.Language.Xml" />

0 commit comments

Comments
 (0)