Skip to content

Commit 2620a7a

Browse files
authored
fix(ci): add x64 platform configurations to project file (#17)
1 parent 3078d19 commit 2620a7a

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

src/CodingWithCalvin.ProjectRenamifier/CodingWithCalvin.ProjectRenamifier.csproj

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,25 @@
4444
<ErrorReport>prompt</ErrorReport>
4545
<WarningLevel>4</WarningLevel>
4646
</PropertyGroup>
47+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
48+
<DebugSymbols>true</DebugSymbols>
49+
<DebugType>full</DebugType>
50+
<Optimize>false</Optimize>
51+
<OutputPath>bin\x64\Debug\</OutputPath>
52+
<DefineConstants>DEBUG;TRACE</DefineConstants>
53+
<ErrorReport>prompt</ErrorReport>
54+
<WarningLevel>4</WarningLevel>
55+
<PlatformTarget>x64</PlatformTarget>
56+
</PropertyGroup>
57+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
58+
<DebugType>pdbonly</DebugType>
59+
<Optimize>true</Optimize>
60+
<OutputPath>bin\x64\Release\</OutputPath>
61+
<DefineConstants>TRACE</DefineConstants>
62+
<ErrorReport>prompt</ErrorReport>
63+
<WarningLevel>4</WarningLevel>
64+
<PlatformTarget>x64</PlatformTarget>
65+
</PropertyGroup>
4766
<ItemGroup>
4867
<Compile Include="Properties\AssemblyInfo.cs" />
4968
<Compile Include="Commands\RenamifyProjectCommand.cs" />

0 commit comments

Comments
 (0)