-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
31 lines (26 loc) · 1.09 KB
/
Directory.Build.props
File metadata and controls
31 lines (26 loc) · 1.09 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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<SolutionDirectory>$(MSBuildThisFileDirectory)</SolutionDirectory>
</PropertyGroup>
<!-- Version Configuration -->
<PropertyGroup>
<Version>0.0.3</Version>
<MonoGameVersion>3.8.4.1</MonoGameVersion>
</PropertyGroup>
<PropertyGroup>
<Authors>Christopher Whitley (AristurtleDev)</Authors>
<PackageProjectUrl>https://github.com/aristurtledev/forme</PackageProjectUrl>
<RepositoryUrl>https://github.com/aristurtledev/forme</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryBranch>develop</RepositoryBranch>
<NeutralLanguage>en</NeutralLanguage>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<!-- path must be relative to the individual csproj's not this .targets file -->
<None Include="../../README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>