-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMLTDABD-Rel.csproj
85 lines (74 loc) · 4.82 KB
/
MLTDABD-Rel.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
75
76
77
78
79
80
81
82
83
84
85
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<RootNamespace>MLTDABD_Rel</RootNamespace>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<PlatformTarget>AnyCPU</PlatformTarget>
<RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent>
<ApplicationIcon>Properties\ICON_256.ico</ApplicationIcon>
<AssemblyVersion>1.1.2220.613</AssemblyVersion>
<FileVersion>1.1.2220.613</FileVersion>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<Compile Include="src\APIs\Main\Matsurihi\.MeCommon\LVersion.cs" />
<Compile Include="src\APIs\Main\Matsurihi\.MeCommon\RVersion.cs" />
<Compile Include="src\APIs\Main\Matsurihi\.MeCommon\Version.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="Properties\ICON_256.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="2021.3.0" />
<PackageReference Include="LruCacheNet" Version="1.2.0" />
<PackageReference Include="MessagePack" Version="2.3.85" />
<PackageReference Include="Microsoft.WindowsAPICodePack-Shell" Version="1.1.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="OpenTK.GLControl" Version="3.1.0" />
<PackageReference Include="WindowsAPICodePack-Core" Version="1.1.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AssetStudio-e81c66b7a8bd48d97c76f8b25ee72cd9d6f33ee3\AssetStudioUtility\AssetStudioUtility.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="OpenTK">
<HintPath>packages\OpenTK.3.1.0\lib\net20\OpenTK.dll</HintPath>
</Reference>
<Reference Include="PresentationCore">
<HintPath>..\..\..\..\..\Windows\Microsoft.NET\Framework\v4.0.30319\WPF\PresentationCore.dll</HintPath>
</Reference>
<Reference Include="PresentationFramework">
<HintPath>..\..\..\..\..\Windows\Microsoft.NET\Framework\v4.0.30319\WPF\PresentationFramework.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="if "$(PlatformName)" == "AnyCPU" (
 if "$(ConfigurationName)" == "Debug" (
 copy /Y /V "$(ProjectDir)Lib\x64\libfbxsdkd.dll" "$(ProjectDir)$(OutDir)libfbxsdk.dll"
 )
 
 if "$(ConfigurationName)" == "Release" (
 copy /Y /V "$(ProjectDir)Lib\x64\libfbxsdk.dll" "$(ProjectDir)$(OutDir)libfbxsdk.dll"
 copy /Y /V "$(ProjectDir)Lib\x64\fmod.dll" "$(ProjectDir)$(OutDir)fmod.dll"
 )
)

if "$(PlatformName)" == "x64" (
 if "$(ConfigurationName)" == "Debug" (
 copy /Y /V "$(ProjectDir)Lib\x64\libfbxsdkd.dll" "$(ProjectDir)$(OutDir)libfbxsdk.dll"
 )
 
 if "$(ConfigurationName)" == "Release" (
 copy /Y /V "$(ProjectDir)Lib\x64\libfbxsdk.dll" "$(ProjectDir)$(OutDir)libfbxsdk.dll"
 copy /Y /V "$(ProjectDir)Lib\x64\fmod.dll" "$(ProjectDir)$(OutDir)fmod.dll"
 )
)

if "$(PlatformName)" == "x86" (
 if "$(ConfigurationName)" == "Debug" (
 copy /Y /V "$(ProjectDir)Lib\x86\libfbxsdkd.dll" "$(ProjectDir)$(OutDir)libfbxsdk.dll"
 )
 
 if "$(ConfigurationName)" == "Release" (
 copy /Y /V "$(ProjectDir)Lib\x86\libfbxsdk.dll" "$(ProjectDir)$(OutDir)libfbxsdk.dll"
 copy /Y /V "$(ProjectDir)Lib\x86\fmod.dll" "$(ProjectDir)$(OutDir)fmod.dll"
 )
)" />
</Target>
</Project>