Skip to content

Commit b69628b

Browse files
committed
(build) Removed Outputpath
- This is not required
1 parent b3c2db3 commit b69628b

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
lines changed

Source/GitReleaseManager.Cli/GitReleaseManager.Cli.csproj

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,10 @@
2626
<CodeAnalysisRuleSet>..\GitReleaseManager.ruleset</CodeAnalysisRuleSet>
2727
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
2828
</PropertyGroup>
29-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
30-
<OutputPath>..\..\BuildArtifacts\</OutputPath>
29+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
3130
<RunCodeAnalysisRestore>False</RunCodeAnalysisRestore>
3231
</PropertyGroup>
33-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
34-
<OutputPath>..\..\BuildArtifacts\</OutputPath>
32+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
3533
<RunCodeAnalysisRestore>True</RunCodeAnalysisRestore>
3634
</PropertyGroup>
3735
<Import Project="..\..\BuildScripts\CodeAnalysis.props" Condition="Exists('..\..\BuildScripts\CodeAnalysis.props')" />

Source/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
<DebugType>full</DebugType>
77
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
88
</PropertyGroup>
9-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
10-
<OutputPath>..\..\BuildArtifacts\</OutputPath>
9+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
1110
<Optimize>false</Optimize>
1211
<DebugSymbols>true</DebugSymbols>
1312
</PropertyGroup>
@@ -27,7 +26,7 @@
2726
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
2827
<PackageReference Include="ApprovalTests" Version="3.0.18" />
2928
<PackageReference Include="NUnit" Version="3.11.0" />
30-
<PackageReference Include="NUnit3TestAdapter" Version="3.11.2" />
29+
<PackageReference Include="NUnit3TestAdapter" Version="3.11.2" />
3130
<PackageReference Include="Octokit" Version="0.32.0" />
3231
</ItemGroup>
3332
</Project>

Source/GitReleaseManager/GitReleaseManager.Core.csproj

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,10 @@
1010
<CodeAnalysisRuleSet>..\GitReleaseManager.ruleset</CodeAnalysisRuleSet>
1111
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
1212
</PropertyGroup>
13-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
14-
<OutputPath>..\..\BuildArtifacts\</OutputPath>
13+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
1514
<RunCodeAnalysisRestore>False</RunCodeAnalysisRestore>
1615
</PropertyGroup>
17-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
18-
<OutputPath>..\..\BuildArtifacts\</OutputPath>
16+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
1917
<RunCodeAnalysisRestore>True</RunCodeAnalysisRestore>
2018
</PropertyGroup>
2119
<Import Project="..\..\BuildScripts\CodeAnalysis.props" Condition="Exists('..\..\BuildScripts\CodeAnalysis.props')" />

0 commit comments

Comments
 (0)