2022-12-23 12:57:09 -05:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2022-03-31 20:34:17 -04:00
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
<RootNamespace>FruityFoundation.FsBase</RootNamespace>
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
|
|
<PackageId>FruityFoundation.FsBase</PackageId>
|
|
|
|
<Authors>Kyle Ratti</Authors>
|
2022-11-30 23:28:31 -05:00
|
|
|
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
2023-08-02 20:25:26 -04:00
|
|
|
<Version>1.3.1</Version>
|
2022-11-30 23:28:31 -05:00
|
|
|
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
2022-03-31 20:34:17 -04:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2022-11-30 23:28:31 -05:00
|
|
|
<ItemGroup>
|
|
|
|
<None Include="..\LICENSE" Pack="true" PackagePath="" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2022-03-31 20:34:17 -04:00
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<Compile Include="Extensions.fs" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-08-01 22:12:54 -04:00
|
|
|
<PackageReference Update="FSharp.Core" Version="7.0.300" />
|
2022-03-31 20:34:17 -04:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Base\Base.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|