-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
23 lines (20 loc) · 805 Bytes
/
Directory.Build.props
File metadata and controls
23 lines (20 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ProjectCategory>examples</ProjectCategory>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<IsPackable>false</IsPackable>
<Copyright>Copyright © 2024 Christopher Whitley</Copyright>
<Authors>Christopher Whitley and contributors</Authors>
<Company>Aristurtle</Company>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\source\MonoGame.Aseprite\MonoGame.Aseprite.csproj" />
</ItemGroup>
<Import Project="$(MSBuildThisFileDirectory)..\Directory.Build.props" />
<PropertyGroup>
<Nullable>disable</Nullable>
</PropertyGroup>
</Project>