Skip to content

Commit 93c5a65

Browse files
committed
Fix use of DefineConstants
1 parent 91c8419 commit 93c5a65

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Core/AbpCompanyName.AbpProjectName.Web.Core.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
</PropertyGroup>
1919

2020
<PropertyGroup Condition=" '$(TargetFramework)' == 'net461' ">
21-
<DefineConstants>FEATURE_SIGNALR</DefineConstants>
22-
<DefineConstants>FEATURE_SIGNALR_OWIN</DefineConstants>
21+
<DefineConstants>FEATURE_SIGNALR;FEATURE_SIGNALR_OWIN</DefineConstants>
2322
</PropertyGroup>
2423

2524
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.0' ">

aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Host/AbpCompanyName.AbpProjectName.Web.Host.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111
</PropertyGroup>
1212

1313
<PropertyGroup Condition=" '$(TargetFramework)' == 'net461' ">
14-
<DefineConstants>FEATURE_SIGNALR</DefineConstants>
15-
<DefineConstants>FEATURE_SIGNALR_OWIN</DefineConstants>
14+
<DefineConstants>FEATURE_SIGNALR;FEATURE_SIGNALR_OWIN</DefineConstants>
1615
</PropertyGroup>
1716

1817
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.0' ">

aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/AbpCompanyName.AbpProjectName.Web.Mvc.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
</PropertyGroup>
1313

1414
<PropertyGroup Condition=" '$(TargetFramework)' == 'net461' ">
15-
<DefineConstants>FEATURE_SIGNALR</DefineConstants>
16-
<DefineConstants>FEATURE_SIGNALR_OWIN</DefineConstants>
15+
<DefineConstants>FEATURE_SIGNALR;FEATURE_SIGNALR_OWIN</DefineConstants>
1716
</PropertyGroup>
1817

1918
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.0' ">

0 commit comments

Comments
 (0)