-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathLocalizedStringStudioPlugin.csproj
More file actions
72 lines (64 loc) · 2.76 KB
/
Copy pathLocalizedStringStudioPlugin.csproj
File metadata and controls
72 lines (64 loc) · 2.76 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
69
70
71
72
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<Configurations>Developer - Debug;Release - Alpha;Release - Beta;Release - Final</Configurations>
<Platforms>x64</Platforms>
<TargetFrameworks>net48</TargetFrameworks>
<AssemblyTitle>LocalizedStringStudioPlugin</AssemblyTitle>
<Product>LocalizedStringStudioPlugin</Product>
<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>
<PackageReference Include="Sylvan.Data.Csv" Version="1.3.8" />
<PackageReference Include="Sylvan.Data.Excel" Version="0.4.23" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FrostyToolsuite\FrostyHash\FrostyHash.vcxproj">
<Private>false</Private>
<PrivateAssets>all</PrivateAssets>
</ProjectReference>
<ProjectReference Include="..\FrostyToolsuite\FrostyControls\FrostyControls.csproj">
<Private>false</Private>
<PrivateAssets>all</PrivateAssets>
</ProjectReference>
<ProjectReference Include="..\FrostyToolsuite\FrostyPlugin\FrostyCore.csproj">
<Private>false</Private>
<PrivateAssets>all</PrivateAssets>
</ProjectReference>
<ProjectReference Include="..\FrostyToolsuite\FrostySdk\FrostySdk.csproj">
<Private>false</Private>
<PrivateAssets>all</PrivateAssets>
</ProjectReference>
<Reference Include="Newtonsoft.Json">
<HintPath>..\FrostyToolsuite\FrostyEditor\ThirdParty\Newtonsoft.Json.dll</HintPath>
<Private>false</Private>
<PrivateAssets>all</PrivateAssets>
</Reference>
</ItemGroup>
<ItemGroup>
<None Remove="Images\LocalizedStringEditor.png" />
<Resource Include="Images\LocalizedStringEditor.png" />
</ItemGroup>
</Project>