-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Zinc.csproj
39 lines (33 loc) · 1.21 KB
/
Zinc.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>Zinc</AssemblyName>
<RootNamespace>Zinc</RootNamespace>
<LangVersion>default</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Arch" Version="1.2.7" />
<PackageReference Include="Depot.SourceGenerator" Version="1.0.5" />
<PackageReference Include="FontStashSharp" Version="1.3.6" />
<PackageReference Include="Zinc.ECSGenerator" Version="1.2.8" />
<PackageReference Include="Zinc.Magic" Version="1.0.1" />
</ItemGroup>
<ItemGroup>
<Content Include="data\**\*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="libs\runtimes\**\*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<PackagePath>runtimes</PackagePath>
</Content>
</ItemGroup>
<PropertyGroup>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
</PropertyGroup>
<!-- <ItemGroup>
<Folder Include="data\fonts\" />
</ItemGroup> -->
</Project>