-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDotGLFW.NugetAotExample.csproj
More file actions
28 lines (22 loc) · 809 Bytes
/
DotGLFW.NugetAotExample.csproj
File metadata and controls
28 lines (22 loc) · 809 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<RestoreSources>..\nupkg;$(RestoreSources);https://api.nuget.org/v3/index.json</RestoreSources>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<PublishAot>true</PublishAot>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\DotGLFW.Example\Program.cs" />
</ItemGroup>
<PropertyGroup Condition="$(Configuration) == 'Debug'">
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration) == 'Release'">
<OutputType>WinExe</OutputType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DotGLFW" Version="1.1.0" />
</ItemGroup>
</Project>