-
Notifications
You must be signed in to change notification settings - Fork 3
/
AssetStudioExporter.csproj
54 lines (49 loc) · 2.14 KB
/
AssetStudioExporter.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.23.2.0</Version>
<PlatformTarget>AnyCPU</PlatformTarget>
<Platforms>x64;x86</Platforms>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>12.0</LangVersion>
<EnablePreviewFeatures>True</EnablePreviewFeatures>
<GenerateRequiresPreviewFeaturesAttribute>True</GenerateRequiresPreviewFeaturesAttribute>
</PropertyGroup>
<ItemGroup>
<ContentWithTargetPath Include="lib/x64/fmod.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>x64/fmod.dll</TargetPath>
</ContentWithTargetPath>
<ContentWithTargetPath Include="lib/x86/fmod.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>x86/fmod.dll</TargetPath>
</ContentWithTargetPath>
<ContentWithTargetPath Include="lib/x64/libfmod.so">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>x64/libfmod.so</TargetPath>
</ContentWithTargetPath>
<ContentWithTargetPath Include="lib/x86/libfmod.so">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>x86/libfmod.so</TargetPath>
</ContentWithTargetPath>
<ContentWithTargetPath Include="lib/x64/Texture2DDecoderNative.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>x64/Texture2DDecoderNative.dll</TargetPath>
</ContentWithTargetPath>
<ContentWithTargetPath Include="lib/x86/Texture2DDecoderNative.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>x86/Texture2DDecoderNative.dll</TargetPath>
</ContentWithTargetPath>
</ItemGroup>
<ItemGroup>
<PackageReference Include="AssetsTools.NET" Version="3.0.0" />
<PackageReference Include="AssetsTools.NET.Texture" Version="1.0.0" />
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.8" />
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="1.0.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="AssetTypes\Abstractions\" />
</ItemGroup>
</Project>