Skip to content

Commit

Permalink
minver
Browse files Browse the repository at this point in the history
  • Loading branch information
kpne committed Nov 5, 2024
1 parent eab32f3 commit 5e4da56
Showing 1 changed file with 48 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,11 +1,39 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<PropertyGroup>
<MinVerMinimumMajorMinor>0.0</MinVerMinimumMajorMinor>
<MinVerDefaultPreReleaseIdentifiers>preview</MinVerDefaultPreReleaseIdentifiers>
</PropertyGroup>

<PropertyGroup>
<TargetFrameworks>net48;netstandard2.0;net6.0;net7.0;net8.0</TargetFrameworks>
<LangVersion>9.0</LangVersion>
<Platforms>AnyCPU</Platforms>
<RootNamespace>MagmaWorks.Taxonomy.Serialization</RootNamespace>
</PropertyGroup>

<PropertyGroup>
<Title>MagmaWorks Taxonomy Serialization Interfaces</Title>
<Company>Whitby Wood</Company>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/MagmaWorks/Taxonomy/</RepositoryUrl>
<PackageIcon>MagmaWorks.png</PackageIcon>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="MinVer" Version="6.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="OasysUnits.Serialization.JsonNet" Version="1.1.1" />
Expand All @@ -14,5 +42,24 @@
<ItemGroup>
<ProjectReference Include="..\ISerialization\MagmaWorks.Taxonomy.ISerialization.csproj" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\Licenses\UnitsNet">
<Pack>True</Pack>
<PackagePath>\Licenses\</PackagePath>
</None>
<None Include="..\..\MagmaWorks.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

</Project>

0 comments on commit 5e4da56

Please sign in to comment.