-
Notifications
You must be signed in to change notification settings - Fork 1
/
LooseTextureCompilerCore.csproj
74 lines (66 loc) · 2.65 KB
/
LooseTextureCompilerCore.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup>
<DalamudLibPath>$(AppData)\XIVLauncher\addon\Hooks\dev\</DalamudLibPath>
</PropertyGroup>
<ItemGroup>
<None Remove="Racial\femalebody.json" />
<None Remove="Racial\femaleetc.json" />
<None Remove="Racial\femaleeye.json" />
<None Remove="Racial\femaleface.json" />
<None Remove="Racial\malebody.json" />
<None Remove="Racial\maleetc.json" />
<None Remove="Racial\maleeye.json" />
<None Remove="Racial\maleface.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Racial\femalebody.json" />
<EmbeddedResource Include="Racial\femaleetc.json" />
<EmbeddedResource Include="Racial\femaleeye.json" />
<EmbeddedResource Include="Racial\femaleface.json" />
<EmbeddedResource Include="Racial\malebody.json" />
<EmbeddedResource Include="Racial\maleetc.json" />
<EmbeddedResource Include="Racial\maleeye.json" />
<EmbeddedResource Include="Racial\maleface.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Lumina" Version="5.3.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.5" />
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="2.1.4" />
<PackageReference Include="System.Drawing.Common" Version="8.0.3" />
</ItemGroup>
<ItemGroup>
<Reference Include="OtterTex">
<HintPath>Penumbra\lib\OtterTex.dll</HintPath>
</Reference>
<Reference Include="Penumbra.GameData">
<HintPath>Penumbra.GameData.dll</HintPath>
</Reference>
<Reference Include="Penumbra.String">
<HintPath>Penumbra.String.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="OtterGui.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Penumbra.GameData.dll">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="Penumbra.String.dll">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="DirectXTexC.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="OtterTex.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>