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

Commit ce28a89

Browse files
committed
Add ASYNC build symbol to all configurations
1 parent 7315c45 commit ce28a89

File tree

5 files changed

+14
-13
lines changed

5 files changed

+14
-13
lines changed

src/ServiceStack.OrmLite.MySql/ServiceStack.OrmLite.MySql.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<DebugType>full</DebugType>
2222
<Optimize>false</Optimize>
2323
<OutputPath>bin\Debug\</OutputPath>
24-
<DefineConstants>DEBUG;TRACE</DefineConstants>
24+
<DefineConstants>TRACE;DEBUG;ASYNC</DefineConstants>
2525
<ErrorReport>prompt</ErrorReport>
2626
<WarningLevel>4</WarningLevel>
2727
<Prefer32Bit>false</Prefer32Bit>
@@ -37,7 +37,7 @@
3737
</PropertyGroup>
3838
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Signed|AnyCPU'">
3939
<OutputPath>bin\Signed\</OutputPath>
40-
<DefineConstants>TRACE</DefineConstants>
40+
<DefineConstants>TRACE;ASYNC</DefineConstants>
4141
<Optimize>true</Optimize>
4242
<DebugType>pdbonly</DebugType>
4343
<PlatformTarget>AnyCPU</PlatformTarget>

src/ServiceStack.OrmLite.PostgreSQL/ServiceStack.OrmLite.PostgreSQL.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<DebugType>full</DebugType>
2222
<Optimize>false</Optimize>
2323
<OutputPath>bin\Debug\</OutputPath>
24-
<DefineConstants>DEBUG;TRACE</DefineConstants>
24+
<DefineConstants>TRACE;DEBUG;ASYNC</DefineConstants>
2525
<ErrorReport>prompt</ErrorReport>
2626
<WarningLevel>4</WarningLevel>
2727
<Prefer32Bit>false</Prefer32Bit>
@@ -37,7 +37,7 @@
3737
</PropertyGroup>
3838
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Signed|AnyCPU'">
3939
<OutputPath>bin\Signed\</OutputPath>
40-
<DefineConstants>TRACE</DefineConstants>
40+
<DefineConstants>TRACE;ASYNC</DefineConstants>
4141
<Optimize>true</Optimize>
4242
<DebugType>pdbonly</DebugType>
4343
<PlatformTarget>AnyCPU</PlatformTarget>

src/ServiceStack.OrmLite.Sqlite.Windows/ServiceStack.OrmLite.Sqlite.Windows.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<DebugType>full</DebugType>
2323
<Optimize>false</Optimize>
2424
<OutputPath>bin\Debug\</OutputPath>
25-
<DefineConstants>DEBUG;TRACE</DefineConstants>
25+
<DefineConstants>TRACE;DEBUG;ASYNC</DefineConstants>
2626
<ErrorReport>prompt</ErrorReport>
2727
<WarningLevel>4</WarningLevel>
2828
<Prefer32Bit>false</Prefer32Bit>
@@ -42,6 +42,7 @@
4242
<ErrorReport>prompt</ErrorReport>
4343
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
4444
<Prefer32Bit>false</Prefer32Bit>
45+
<DefineConstants>ASYNC</DefineConstants>
4546
</PropertyGroup>
4647
<ItemGroup>
4748
<Reference Include="ServiceStack.Interfaces">

src/ServiceStack.OrmLite.Sqlite/ServiceStack.OrmLite.Sqlite.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<DebugType>full</DebugType>
3939
<Optimize>false</Optimize>
4040
<OutputPath>bin\Debug\</OutputPath>
41-
<DefineConstants>DEBUG;TRACE</DefineConstants>
41+
<DefineConstants>TRACE;DEBUG;ASYNC</DefineConstants>
4242
<ErrorReport>prompt</ErrorReport>
4343
<WarningLevel>4</WarningLevel>
4444
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
@@ -59,7 +59,7 @@
5959
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'STATIC_ONLY NO_EXPRESSIONS|AnyCPU' ">
6060
<DebugSymbols>true</DebugSymbols>
6161
<OutputPath>bin\STATIC_ONLY NO_EXPRESSIONS\</OutputPath>
62-
<DefineConstants>DEBUG;TRACE</DefineConstants>
62+
<DefineConstants>TRACE;DEBUG;ASYNC</DefineConstants>
6363
<DebugType>full</DebugType>
6464
<PlatformTarget>x86</PlatformTarget>
6565
<ErrorReport>prompt</ErrorReport>
@@ -71,7 +71,7 @@
7171
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'MonoTouch|AnyCPU' ">
7272
<DebugSymbols>true</DebugSymbols>
7373
<OutputPath>bin\MonoTouch\</OutputPath>
74-
<DefineConstants>DEBUG;TRACE</DefineConstants>
74+
<DefineConstants>TRACE;DEBUG;ASYNC</DefineConstants>
7575
<DebugType>full</DebugType>
7676
<PlatformTarget>x86</PlatformTarget>
7777
<ErrorReport>prompt</ErrorReport>
@@ -82,7 +82,7 @@
8282
</PropertyGroup>
8383
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Signed|AnyCPU'">
8484
<OutputPath>bin\Signed\</OutputPath>
85-
<DefineConstants>TRACE</DefineConstants>
85+
<DefineConstants>TRACE;ASYNC</DefineConstants>
8686
<Optimize>true</Optimize>
8787
<DebugType>pdbonly</DebugType>
8888
<PlatformTarget>x86</PlatformTarget>

src/ServiceStack.OrmLite/ServiceStack.OrmLite.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<DebugType>full</DebugType>
3939
<Optimize>False</Optimize>
4040
<OutputPath>bin\Debug\</OutputPath>
41-
<DefineConstants>TRACE;DEBUG;NET45</DefineConstants>
41+
<DefineConstants>TRACE;DEBUG;ASYNC</DefineConstants>
4242
<ErrorReport>prompt</ErrorReport>
4343
<WarningLevel>4</WarningLevel>
4444
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
@@ -58,7 +58,7 @@
5858
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'STATIC_ONLY NO_EXPRESSIONS|AnyCPU' ">
5959
<DebugSymbols>True</DebugSymbols>
6060
<OutputPath>bin\STATIC_ONLY NO_EXPRESSIONS\</OutputPath>
61-
<DefineConstants>DEBUG;TRACE</DefineConstants>
61+
<DefineConstants>TRACE;DEBUG;ASYNC</DefineConstants>
6262
<DebugType>full</DebugType>
6363
<PlatformTarget>AnyCPU</PlatformTarget>
6464
<ErrorReport>prompt</ErrorReport>
@@ -70,7 +70,7 @@
7070
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'MonoTouch|AnyCPU' ">
7171
<DebugSymbols>True</DebugSymbols>
7272
<OutputPath>bin\MonoTouch\</OutputPath>
73-
<DefineConstants>TRACE;DEBUG;STATIC_ONLY NO_EXPRESSIONS</DefineConstants>
73+
<DefineConstants>TRACE;DEBUG;ASYNC</DefineConstants>
7474
<DebugType>full</DebugType>
7575
<PlatformTarget>AnyCPU</PlatformTarget>
7676
<ErrorReport>prompt</ErrorReport>
@@ -81,7 +81,7 @@
8181
</PropertyGroup>
8282
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Signed|AnyCPU'">
8383
<OutputPath>bin\Signed\</OutputPath>
84-
<DefineConstants>TRACE</DefineConstants>
84+
<DefineConstants>TRACE;ASYNC</DefineConstants>
8585
<Optimize>true</Optimize>
8686
<DebugType>pdbonly</DebugType>
8787
<PlatformTarget>AnyCPU</PlatformTarget>

0 commit comments

Comments
 (0)