mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-18 05:47:43 +01:00
17 lines
674 B
XML
17 lines
674 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup Label="Target">
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<LangVersion>8.0</LangVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup Label="Build">
|
|
<OutputType>Exe</OutputType>
|
|
<OutputPath>$(SolutionDir)/bin</OutputPath>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>Portable</DebugType>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Dalamud\Dalamud.csproj" />
|
|
<ProjectReference Include="..\lib\CoreHook\src\CoreHook.BinaryInjection\CoreHook.BinaryInjection.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|