Skip to content

Commit

Permalink
Merge branch 'release/1.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
louisfischer committed Feb 12, 2021
2 parents 8c58a45 + e3d03e7 commit f86160a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 18 deletions.
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,11 @@ Release notes can be found [here](https://github.com/cake-contrib/Cake.SSRS/rele

[![Coverage Status](https://coveralls.io/repos/github/cake-contrib/Cake.SSRS/badge.svg?branch=develop)](https://coveralls.io/github/cake-contrib/Cake.SSRS?branch=develop)

## Discussion

## Chat Room
If you have questions, search for an existing one, or create a new discussion on the Cake GitHub repository, using the `Extension Q&A` category.

Come join in the conversation about Cake.SSRS in our Gitter Chat Room

[![Join the chat at https://gitter.im/cake-contrib/Lobby](https://badges.gitter.im/cake-contrib/Lobby.svg)](https://gitter.im/cake-contrib/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Join in the discussion on the Cake repository](https://img.shields.io/badge/GitHub-Discussions-green?logo=github)](https://github.com/cake-build/cake/discussions)

## About

Expand Down Expand Up @@ -121,4 +120,4 @@ var catalogItem = SsrsFindItem (
ImperonsationLevel = System.Security.Principal.TokenImpersonationLevel.Impersonation,
SecurityMode = SecurityMode.TransportCredentialOnly
});
```
```
16 changes: 8 additions & 8 deletions src/Cake.SSRS.Tests/Cake.SSRS.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<TargetFramework>net5.0</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>

Expand Down Expand Up @@ -73,15 +73,15 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Cake.Testing" Version="0.35.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageReference Include="Cake.Testing" Version="1.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
<PackageReference Include="NSubstitute" Version="3.1.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="System.ServiceModel.Duplex" Version="4.6.0" />
<PackageReference Include="System.ServiceModel.Http" Version="4.6.0" />
<PackageReference Include="System.ServiceModel.NetTcp" Version="4.6.0" />
<PackageReference Include="System.ServiceModel.Security" Version="4.6.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
<PackageReference Include="System.ServiceModel.Duplex" Version="4.8.1" />
<PackageReference Include="System.ServiceModel.Http" Version="4.8.1" />
<PackageReference Include="System.ServiceModel.NetTcp" Version="4.8.1" />
<PackageReference Include="System.ServiceModel.Security" Version="4.8.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
Expand Down
10 changes: 5 additions & 5 deletions src/Cake.SSRS/Cake.SSRS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,18 +42,18 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Cake.Core" Version="0.35.0" PrivateAssets="All" />
<PackageReference Include="Cake.Core" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
<Reference Include="System.ServiceModel" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.1' ">
<PackageReference Include="System.ServiceModel.Duplex" Version="4.6.0" PrivateAssets="All" />
<PackageReference Include="System.ServiceModel.Http" Version="4.6.0" PrivateAssets="All" />
<PackageReference Include="System.ServiceModel.NetTcp" Version="4.6.0" PrivateAssets="All" />
<PackageReference Include="System.ServiceModel.Security" Version="4.6.0" PrivateAssets="All" />
<PackageReference Include="System.ServiceModel.Duplex" Version="4.8.1" PrivateAssets="All" />
<PackageReference Include="System.ServiceModel.Http" Version="4.8.1" PrivateAssets="All" />
<PackageReference Include="System.ServiceModel.NetTcp" Version="4.8.1" PrivateAssets="All" />
<PackageReference Include="System.ServiceModel.Security" Version="4.8.1" PrivateAssets="All" />
</ItemGroup>

<Target Name="PackBuildOutputs" DependsOnTargets="SatelliteDllsProjectOutputGroup;DebugSymbolsProjectOutputGroup">
Expand Down

0 comments on commit f86160a

Please sign in to comment.