-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuickCraft.csproj
More file actions
25 lines (24 loc) · 831 Bytes
/
Copy pathQuickCraft.csproj
File metadata and controls
25 lines (24 loc) · 831 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>QuickCraft</AssemblyName>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
</PropertyGroup>
<ItemGroup>
<Reference Include="VintagestoryAPI">
<HintPath>D:\Vintagestory\VintagestoryAPI.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="0Harmony">
<HintPath>D:\Vintagestory\Lib\0Harmony.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="cairo-sharp">
<HintPath>D:\Vintagestory\Lib\cairo-sharp.dll</HintPath>
<Private>false</Private>
</Reference>
</ItemGroup>
</Project>