-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMeshTextureDuplicationPlugin.csproj
More file actions
68 lines (61 loc) · 2.81 KB
/
MeshTextureDuplicationPlugin.csproj
File metadata and controls
68 lines (61 loc) · 2.81 KB
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
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<Configurations>Developer - Debug;Release - Alpha;Release - Beta;Release - Final</Configurations>
<Platforms>x64</Platforms>
<TargetFramework>net48</TargetFramework>
<AssemblyTitle>MeshTextureDuplicationPlugin</AssemblyTitle>
<Product>MeshTextureDuplicationPlugin</Product>
<Copyright>Copyright © 2025</Copyright>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<UseWPF>true</UseWPF>
<OutputType>Library</OutputType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Developer - Debug|x64' ">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\Developer\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release - Alpha|x64' ">
<OutputPath>bin\Release\Alpha\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release - Beta|x64'">
<OutputPath>bin\Release\Beta\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release - Final|x64'">
<OutputPath>bin\Release\Final\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="D:\Frosty\FrostyToolsuite\FrostyControls\FrostyControls.csproj">
<Private>false</Private>
</ProjectReference>
<ProjectReference Include="D:\Frosty\FrostyToolsuite\FrostyHash\FrostyHash.vcxproj">
<Private>false</Private>
</ProjectReference>
<ProjectReference Include="D:\Frosty\FrostyToolsuite\FrostyPlugin\FrostyCore.csproj">
<Private>false</Private>
</ProjectReference>
<ProjectReference Include="D:\Frosty\FrostyToolsuite\FrostySdk\FrostySdk.csproj">
<Private>false</Private>
</ProjectReference>
<Reference Include="DuplicationPlugin">
<HintPath>D:\Frosty\FrostyToolsuite\Plugins\DuplicationPlugin\bin\Developer\Debug\DuplicationPlugin.dll</HintPath>
</Reference>
<Reference Include="DuplicationPlugin">
<HintPath>D:\Frosty\FrostyToolsuite\Plugins\MeshSetPlugin\bin\Developer\Debug\MeshSetPlugin.dll</HintPath>
</Reference>
<Reference Include="DuplicationPluginInjectorPlugin">
<HintPath>D:\Frosty\FrostyDuplicationPluginInjector\bin\Developer\Debug\DuplicationPluginInjectorPlugin.dll</HintPath>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</Reference>
</ItemGroup>
<ItemGroup>
<Folder Include="Windows\" />
</ItemGroup>
</Project>