Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 7123367

Browse files
author
TroyDycavinu-AI
committed
Fix build errors caused by broken project references
Add missing NET45 compilation symbol for Debug
1 parent 1c77b49 commit 7123367

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

src/ServiceStack.OrmLite.MySqlV45/ServiceStack.OrmLite.MySqlV45.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<DebugType>full</DebugType>
2020
<Optimize>false</Optimize>
2121
<OutputPath>bin\Debug\</OutputPath>
22-
<DefineConstants>DEBUG;TRACE</DefineConstants>
22+
<DefineConstants>TRACE;DEBUG;NET45</DefineConstants>
2323
<ErrorReport>prompt</ErrorReport>
2424
<WarningLevel>4</WarningLevel>
2525
</PropertyGroup>

src/ServiceStack.OrmLite.SqlServerTests/ServiceStack.OrmLite.SqlServerTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
<HintPath>..\..\lib\tests\nunit.framework.dll</HintPath>
4949
</Reference>
5050
<Reference Include="ServiceStack.Client">
51-
<HintPath>..\..\..\Test\lib\ServiceStack.Client.dll</HintPath>
51+
<HintPath>..\..\lib\ServiceStack.Client.dll</HintPath>
5252
</Reference>
5353
<Reference Include="ServiceStack.Common">
5454
<HintPath>..\..\lib\ServiceStack.Common.dll</HintPath>

src/ServiceStack.OrmLite.SqlServerV45/ServiceStack.OrmLite.SqlServerV45.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<DebugType>full</DebugType>
1818
<Optimize>false</Optimize>
1919
<OutputPath>bin\Debug\</OutputPath>
20-
<DefineConstants>DEBUG;TRACE</DefineConstants>
20+
<DefineConstants>TRACE;DEBUG;NET45</DefineConstants>
2121
<ErrorReport>prompt</ErrorReport>
2222
<WarningLevel>4</WarningLevel>
2323
</PropertyGroup>

src/ServiceStack.OrmLite.SqliteV45/ServiceStack.OrmLite.SqliteV45.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<DebugType>full</DebugType>
1818
<Optimize>false</Optimize>
1919
<OutputPath>bin\Debug\</OutputPath>
20-
<DefineConstants>DEBUG;TRACE</DefineConstants>
20+
<DefineConstants>TRACE;DEBUG;NET45</DefineConstants>
2121
<ErrorReport>prompt</ErrorReport>
2222
<WarningLevel>4</WarningLevel>
2323
</PropertyGroup>

src/ServiceStack.OrmLiteV45/ServiceStack.OrmLiteV45.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<DebugType>full</DebugType>
1818
<Optimize>false</Optimize>
1919
<OutputPath>bin\Debug\</OutputPath>
20-
<DefineConstants>DEBUG;TRACE</DefineConstants>
20+
<DefineConstants>TRACE;DEBUG;NET45</DefineConstants>
2121
<ErrorReport>prompt</ErrorReport>
2222
<WarningLevel>4</WarningLevel>
2323
</PropertyGroup>

tests/ServiceStack.OrmLiteV45.Tests/ServiceStack.OrmLiteV45.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
</PropertyGroup>
3535
<ItemGroup>
3636
<Reference Include="Mono.Security">
37-
<HintPath>..\..\..\ServiceStack\lib\Mono.Security.dll</HintPath>
37+
<HintPath>..\..\lib\Mono.Security.dll</HintPath>
3838
</Reference>
3939
<Reference Include="nunit.framework">
4040
<HintPath>..\..\src\packages\NUnit.2.6.3\lib\nunit.framework.dll</HintPath>
@@ -148,4 +148,4 @@
148148
<Target Name="AfterBuild">
149149
</Target>
150150
-->
151-
</Project>
151+
</Project>

0 commit comments

Comments
 (0)