forked from AristurtleDev/Forme
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
44 lines (37 loc) · 1.75 KB
/
Directory.Build.props
File metadata and controls
44 lines (37 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<TargetFrameworks>net8.0;net48;netcoreapp3.1</TargetFrameworks>
<SuppressTfmSupportBuildErrors>true</SuppressTfmSupportBuildErrors>
<SolutionDirectory>$(MSBuildThisFileDirectory)</SolutionDirectory>
<LangVersion>14.0</LangVersion>
</PropertyGroup>
<!-- Version Configuration -->
<PropertyGroup>
<Version>0.0.3.1</Version>
<MonoGameVersion>3.8.0.1641</MonoGameVersion>
</PropertyGroup>
<PropertyGroup>
<Authors>Christopher Whitley (AristurtleDev), SadPencil @ CnCNet</Authors>
<Description>A fork of AristurtleDev.Forme.* for .NET 4.8 and MonoGame 3.8.0.1641</Description>
<PackageProjectUrl>https://github.com/CnCNet/Forme.NET48</PackageProjectUrl>
<RepositoryUrl>https://github.com/CnCNet/Forme.NET48</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryBranch>develop</RepositoryBranch>
<NeutralLanguage>en</NeutralLanguage>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Polyfill" Version="10.0.0" PrivateAssets="All" />
<PackageReference Include="System.Memory" Version="4.6.3" />
</ItemGroup>
<PropertyGroup>
<!-- Opt-in to Polyfill's ArgumentException static-method group (ThrowIfNull, ThrowIfNegative, etc.) -->
<PolyArgumentExceptions>true</PolyArgumentExceptions>
</PropertyGroup>
<ItemGroup>
<!-- path must be relative to the individual csproj's not this .targets file -->
<None Include="../../README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>