84 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			84 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <Project Sdk="Microsoft.NET.Sdk">
 | |
|   <PropertyGroup>
 | |
|     <Authors></Authors>
 | |
|     <Company></Company>
 | |
|     <Version>0.0.0.1</Version>
 | |
|     <Description></Description>
 | |
|     <Copyright></Copyright>
 | |
|     <PackageProjectUrl>https://github.com/Penumbra-Sync/client</PackageProjectUrl>
 | |
|   </PropertyGroup>
 | |
| 
 | |
|   <PropertyGroup>
 | |
|     <TargetFramework>net5.0-windows7.0</TargetFramework>
 | |
|     <Platforms>x64</Platforms>
 | |
|     <Nullable>enable</Nullable>
 | |
|     <LangVersion>latest</LangVersion>
 | |
|     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
 | |
|     <ProduceReferenceAssembly>false</ProduceReferenceAssembly>
 | |
|     <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
 | |
|     <CopyLocalLockfileAssemblies>true</CopyLocalLockfileAssemblies>
 | |
|   </PropertyGroup>
 | |
| 
 | |
|   <PropertyGroup>
 | |
|     <DalamudLibPath>$(appdata)\XIVLauncher\addon\Hooks\dev\</DalamudLibPath>
 | |
|   </PropertyGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <PackageReference Include="DalamudPackager" Version="2.1.7" />
 | |
|     <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.17">
 | |
|       <PrivateAssets>all</PrivateAssets>
 | |
|       <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
 | |
|     </PackageReference>
 | |
|     <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="5.0.17" />
 | |
|     <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Design" Version="2.0.0-preview1-final" />
 | |
|     <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <ProjectReference Include="..\..\..\Penumbra\Penumbra.GameData\Penumbra.GameData.csproj" />
 | |
|     <ProjectReference Include="..\..\..\Penumbra\Penumbra.PlayerWatch\Penumbra.PlayerWatch.csproj" />
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <Reference Include="FFXIVClientStructs">
 | |
|       <HintPath>$(DalamudLibPath)FFXIVClientStructs.dll</HintPath>
 | |
|       <Private>false</Private>
 | |
|     </Reference>
 | |
|     <Reference Include="Glamourer.GameData">
 | |
|       <HintPath>..\..\..\..\..\AppData\Roaming\XIVLauncher\installedPlugins\Glamourer\0.0.9.0\Glamourer.GameData.dll</HintPath>
 | |
|     </Reference>
 | |
|     <Reference Include="Newtonsoft.Json">
 | |
|       <HintPath>$(DalamudLibPath)Newtonsoft.Json.dll</HintPath>
 | |
|       <Private>false</Private>
 | |
|     </Reference>
 | |
|     <Reference Include="Dalamud">
 | |
|       <HintPath>$(DalamudLibPath)Dalamud.dll</HintPath>
 | |
|       <Private>false</Private>
 | |
|     </Reference>
 | |
|     <Reference Include="ImGui.NET">
 | |
|       <HintPath>$(DalamudLibPath)ImGui.NET.dll</HintPath>
 | |
|       <Private>false</Private>
 | |
|     </Reference>
 | |
|     <Reference Include="ImGuiScene">
 | |
|       <HintPath>$(DalamudLibPath)ImGuiScene.dll</HintPath>
 | |
|       <Private>false</Private>
 | |
|     </Reference>
 | |
|     <Reference Include="Lumina">
 | |
|       <HintPath>$(DalamudLibPath)Lumina.dll</HintPath>
 | |
|       <Private>false</Private>
 | |
|     </Reference>
 | |
|     <Reference Include="Lumina.Excel">
 | |
|       <HintPath>$(DalamudLibPath)Lumina.Excel.dll</HintPath>
 | |
|       <Private>false</Private>
 | |
|     </Reference>
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <None Update="FileCache.db">
 | |
|       <CopyToOutputDirectory>Always</CopyToOutputDirectory>
 | |
|     </None>
 | |
|   </ItemGroup>
 | |
| 
 | |
| </Project>
 | 
