Skip to content
This repository was archived by the owner on Apr 7, 2023. It is now read-only.

Commit b0b74b3

Browse files
committed
fixing the <OutputPath> property of all the projects
1 parent 2979009 commit b0b74b3

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

src/OpenMcdf.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
</PropertyGroup>
2929

3030
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
31-
<OutputPath>..\..\..\bin\Release\</OutputPath>
32-
<DocumentationFile>..\..\..\bin\Release\netstandard2.0\OpenMcdf.xml</DocumentationFile>
31+
<OutputPath>..\bin\Release\</OutputPath>
32+
<DocumentationFile>..\bin\Release\netstandard2.0\OpenMcdf.xml</DocumentationFile>
3333
</PropertyGroup>
3434

3535
<ItemGroup>
@@ -39,7 +39,7 @@
3939
</ItemGroup>
4040

4141
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
42-
<OutputPath>..\..\..\bin\Debug\</OutputPath>
42+
<OutputPath>..\bin\Debug\</OutputPath>
4343
</PropertyGroup>
4444

4545
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">

tests/OpenMcdf.PerfTest/OpenMcdf.PerfTest.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<DebugSymbols>true</DebugSymbols>
4040
<DebugType>full</DebugType>
4141
<Optimize>false</Optimize>
42-
<OutputPath>bin\Debug\</OutputPath>
42+
<OutputPath>..\..\bin\Debug\tests</OutputPath>
4343
<DefineConstants>DEBUG;TRACE</DefineConstants>
4444
<ErrorReport>prompt</ErrorReport>
4545
<WarningLevel>4</WarningLevel>
@@ -49,7 +49,7 @@
4949
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
5050
<DebugType>pdbonly</DebugType>
5151
<Optimize>true</Optimize>
52-
<OutputPath>bin\Release\</OutputPath>
52+
<OutputPath>..\..\bin\Release\tests</OutputPath>
5353
<DefineConstants>TRACE</DefineConstants>
5454
<ErrorReport>prompt</ErrorReport>
5555
<WarningLevel>4</WarningLevel>
@@ -124,4 +124,4 @@
124124
<Target Name="AfterBuild">
125125
</Target>
126126
-->
127-
</Project>
127+
</Project>

tests/OpenMcdf.Test/OpenMcdf.Test.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<DebugSymbols>true</DebugSymbols>
4040
<DebugType>full</DebugType>
4141
<Optimize>false</Optimize>
42-
<OutputPath>bin\Debug\</OutputPath>
42+
<OutputPath>..\..\bin\Debug\tests</OutputPath>
4343
<DefineConstants>DEBUG;TRACE</DefineConstants>
4444
<ErrorReport>prompt</ErrorReport>
4545
<WarningLevel>4</WarningLevel>
@@ -49,7 +49,7 @@
4949
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
5050
<DebugType>pdbonly</DebugType>
5151
<Optimize>true</Optimize>
52-
<OutputPath>bin\Release\</OutputPath>
52+
<OutputPath>..\..\bin\Release\tests</OutputPath>
5353
<DefineConstants>TRACE</DefineConstants>
5454
<ErrorReport>prompt</ErrorReport>
5555
<WarningLevel>4</WarningLevel>
@@ -127,4 +127,4 @@
127127
<Target Name="AfterBuild">
128128
</Target>
129129
-->
130-
</Project>
130+
</Project>

0 commit comments

Comments
 (0)