Skip to content

Commit 4326ee4

Browse files
committed
Fixes Syntax For Environment Variables
1 parent 57a302b commit 4326ee4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

appveyor.props.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<PropTargetFramework>v4.0</PropTargetFramework>
5-
<PropUsingMono>@USINGMONO@</PropUsingMono>
5+
<PropUsingMono>$(USINGMONO)</PropUsingMono>
66
<PropLaunchExe Condition="'$(PropUsingMono)' == 'true'">mono </PropLaunchExe>
7-
<PropBuildWinRT>@BUILDWINRT@</PropBuildWinRT>
7+
<PropBuildWinRT>$(BUILDWINRT)</PropBuildWinRT>
88
<PropBuildWcf Condition="'$(PropUsingMono)' != 'true'">true</PropBuildWcf>
9-
<PropAssemblyVersion>@APPVEYOR_BUILD_VERSION@</PropAssemblyVersion>
9+
<PropAssemblyVersion>$(APPVEYOR_BUILD_VERSION)</PropAssemblyVersion>
1010
<PropKeyfile>c:\projects\rabbitmq-dotnet-client\rabbit.snk</PropKeyfile>
1111
</PropertyGroup>
1212
</Project>

0 commit comments

Comments
 (0)