Skip to content
This repository was archived by the owner on Mar 3, 2025. It is now read-only.

Commit 1ba27e2

Browse files
committed
Add build type for EXILED
1 parent 7426634 commit 1ba27e2

File tree

2 files changed

+28
-2
lines changed

2 files changed

+28
-2
lines changed

callvote.sln

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 15
4-
VisualStudioVersion = 15.0.27130.2026
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.6.33723.286
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CallvotePlugin", "callvote\CallvotePlugin.csproj", "{0952A53A-A70E-4DAA-86A6-6560F2F3607B}"
77
EndProject
88
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{1DB67270-4EAA-49DA-81BD-F97AD92A5EC5}"
99
ProjectSection(SolutionItems) = preProject
10+
.gitignore = .gitignore
1011
License.md = License.md
1112
README.md = README.md
1213
EndProjectSection
@@ -15,6 +16,8 @@ Global
1516
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1617
Debug|Any CPU = Debug|Any CPU
1718
Debug|x64 = Debug|x64
19+
EXILED|Any CPU = EXILED|Any CPU
20+
EXILED|x64 = EXILED|x64
1821
Release|Any CPU = Release|Any CPU
1922
Release|x64 = Release|x64
2023
EndGlobalSection
@@ -23,6 +26,10 @@ Global
2326
{0952A53A-A70E-4DAA-86A6-6560F2F3607B}.Debug|Any CPU.Build.0 = Debug|Any CPU
2427
{0952A53A-A70E-4DAA-86A6-6560F2F3607B}.Debug|x64.ActiveCfg = Debug|x64
2528
{0952A53A-A70E-4DAA-86A6-6560F2F3607B}.Debug|x64.Build.0 = Debug|x64
29+
{0952A53A-A70E-4DAA-86A6-6560F2F3607B}.EXILED|Any CPU.ActiveCfg = EXILED|Any CPU
30+
{0952A53A-A70E-4DAA-86A6-6560F2F3607B}.EXILED|Any CPU.Build.0 = EXILED|Any CPU
31+
{0952A53A-A70E-4DAA-86A6-6560F2F3607B}.EXILED|x64.ActiveCfg = EXILED|x64
32+
{0952A53A-A70E-4DAA-86A6-6560F2F3607B}.EXILED|x64.Build.0 = EXILED|x64
2633
{0952A53A-A70E-4DAA-86A6-6560F2F3607B}.Release|Any CPU.ActiveCfg = Release|Any CPU
2734
{0952A53A-A70E-4DAA-86A6-6560F2F3607B}.Release|Any CPU.Build.0 = Release|Any CPU
2835
{0952A53A-A70E-4DAA-86A6-6560F2F3607B}.Release|x64.ActiveCfg = Release|x64

callvote/CallvotePlugin.csproj

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,25 @@
5050
<ErrorReport>prompt</ErrorReport>
5151
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
5252
</PropertyGroup>
53+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'EXILED|AnyCPU'">
54+
<OutputPath>bin\EXILED\</OutputPath>
55+
<DefineConstants>TRACE</DefineConstants>
56+
<Optimize>true</Optimize>
57+
<DebugType>pdbonly</DebugType>
58+
<PlatformTarget>AnyCPU</PlatformTarget>
59+
<LangVersion>7.3</LangVersion>
60+
<ErrorReport>prompt</ErrorReport>
61+
</PropertyGroup>
62+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'EXILED|x64'">
63+
<OutputPath>bin\x64\EXILED\</OutputPath>
64+
<DefineConstants>TRACE</DefineConstants>
65+
<Optimize>true</Optimize>
66+
<DebugType>pdbonly</DebugType>
67+
<PlatformTarget>x64</PlatformTarget>
68+
<LangVersion>7.3</LangVersion>
69+
<ErrorReport>prompt</ErrorReport>
70+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
71+
</PropertyGroup>
5372
<ItemGroup>
5473
<Reference Include="Assembly-CSharp-firstpass, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
5574
<SpecificVersion>False</SpecificVersion>

0 commit comments

Comments
 (0)