mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
41 lines
No EOL
1.5 KiB
XML
41 lines
No EOL
1.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net472</TargetFramework>
|
|
<LangVersion>preview</LangVersion>
|
|
<AssemblyTitle>Penumbra.PlayerWatch</AssemblyTitle>
|
|
<Company>absolute gangstas</Company>
|
|
<Product>Penumbra</Product>
|
|
<Copyright>Copyright © 2020</Copyright>
|
|
<FileVersion>1.0.0.0</FileVersion>
|
|
<AssemblyVersion>1.0.0.0</AssemblyVersion>
|
|
<OutputPath>bin\$(Configuration)\</OutputPath>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugType>full</DebugType>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<DebugType>pdbonly</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<MSBuildWarningsAsMessages>$(MSBuildWarningsAsMessages);MSB3277</MSBuildWarningsAsMessages>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Dalamud">
|
|
<HintPath>$(DALAMUD_ROOT)\Dalamud.dll</HintPath>
|
|
<HintPath>..\libs\Dalamud.dll</HintPath>
|
|
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Dalamud.dll</HintPath>
|
|
<Private>False</Private>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Penumbra.GameData\Penumbra.GameData.csproj" />
|
|
</ItemGroup>
|
|
</Project> |