FruityFoundation/Base/Base.csproj

25 lines
1018 B
XML
Raw Normal View History

2021-11-19 00:12:02 -05:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;netstandard2.0</TargetFrameworks>
2023-12-17 13:47:03 -05:00
<LangVersion>12</LangVersion>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>FruityFoundation.Base</RootNamespace>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>FruityFoundation.Base</PackageId>
<Authors>Kyle Ratti</Authors>
<Company />
<Product>FruityFoundation.Base</Product>
<RepositoryUrl>https://github.com/kyleratti/FruityFoundation</RepositoryUrl>
2023-09-03 22:11:22 -04:00
<Version>1.5.0</Version>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
2023-08-01 22:12:54 -04:00
<AssemblyName>FruityFoundation.Base</AssemblyName>
2023-12-17 13:47:03 -05:00
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<None Include="..\LICENSE" Pack="true" PackagePath="" />
</ItemGroup>
2021-11-19 00:12:02 -05:00
</Project>