Skip to content

Commit

Permalink
Disable SourceLink from AppVeyor builds
Browse files Browse the repository at this point in the history
  • Loading branch information
poizan42 committed Sep 1, 2018
1 parent f031d88 commit a33565f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Rebus/Rebus.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net45|AnyCPU'">
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<ItemGroup Condition="'$(EnableSourceLink)' != 'false'">
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-63127-02" PrivateAssets="All" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
Expand Down
6 changes: 3 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ before_build:
- appveyor-retry dotnet restore -v Minimal

build_script:
- dotnet build Rebus -c Release
- dotnet build Rebus.Tests.Contracts -c Release /p:WarningLevel=3
- dotnet build Rebus.Tests -c Release /p:WarningLevel=3
- dotnet build Rebus -c Release /p:EnableSourceLink=false
- dotnet build Rebus.Tests.Contracts -c Release /p:WarningLevel=3 /p:EnableSourceLink=false
- dotnet build Rebus.Tests -c Release /p:WarningLevel=3 /p:EnableSourceLink=false

0 comments on commit a33565f

Please sign in to comment.