Skip to content

Commit

Permalink
Merge branch 'release/0.5.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
louisfischer committed Oct 15, 2019
2 parents 632b76d + f696a34 commit dde05fe
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 54 deletions.
29 changes: 0 additions & 29 deletions nuspec/nuget/Cake.SSRS.nuspec

This file was deleted.

4 changes: 2 additions & 2 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">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp2.0;net461</TargetFrameworks>
<TargetFrameworks>netcoreapp2.2</TargetFrameworks>
<IsPackable>false</IsPackable>
</PropertyGroup>

Expand Down
5 changes: 2 additions & 3 deletions src/Cake.SSRS.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27004.2008
# Visual Studio Version 16
VisualStudioVersion = 16.0.29326.143
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Cake.SSRS", "Cake.SSRS\Cake.SSRS.csproj", "{EFD24AC6-7F0B-4CCF-9FED-0B2423DF2DC6}"
EndProject
Expand All @@ -11,7 +11,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{F6FDA1F3
ProjectSection(SolutionItems) = preProject
..\.appveyor.yml = ..\.appveyor.yml
..\build.ps1 = ..\build.ps1
..\nuspec\nuget\Cake.SSRS.nuspec = ..\nuspec\nuget\Cake.SSRS.nuspec
..\recipe.cake = ..\recipe.cake
EndProjectSection
EndProject
Expand Down
66 changes: 46 additions & 20 deletions src/Cake.SSRS/Cake.SSRS.csproj
Original file line number Diff line number Diff line change
@@ -1,38 +1,64 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<WarningsAsErrors />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NETSTANDARD2_0</DefineConstants>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<WarningLevel>0</WarningLevel>
<DocumentationFile>bin\Debug\netstandard2.0\Cake.SSRS.xml</DocumentationFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<PropertyGroup>
<Title>Cake.SSRS</Title>
<Description>SQL Server Reporting Services addin for cake build.</Description>
<Authors>louisfischer</Authors>
<Copyright>Copyright (c) Cake Contributions Organization 2019</Copyright>
<PackageTags>Cake Script Report Reporting SSRS Sql-Server</PackageTags>
<PackageIconUrl>https://cdn.jsdelivr.net/gh/cake-contrib/graphics@a5cf0f881c390650144b2243ae551d5b9f836196/png/cake-contrib-medium.png</PackageIconUrl>
<PackageProjectUrl>http://cake-contrib.github.io/Cake.SSRS/</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/cake-contrib/Cake.SSRS.git</RepositoryUrl>
<PackageReleaseNotes>https://github.com/cake-contrib/Cake.SSRS/releases/tag/0.5.0</PackageReleaseNotes>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<IncludeBuildOutput>false</IncludeBuildOutput>
<TargetsForTfmSpecificContentInPackage>$(TargetsForTfmSpecificContentInPackage);PackBuildOutputs</TargetsForTfmSpecificContentInPackage>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">

<DocumentationFile>bin\Debug\netstandard2.0\Cake.SSRS.xml</DocumentationFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
<WarningLevel>0</WarningLevel>
<DocumentationFile>bin\Release\netstandard2.0\Cake.SSRS.xml</DocumentationFile>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Cake.Core" Version="0.33.0" PrivateAssets="All" />
<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" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
<Reference Include="System.ServiceModel" />
<ItemGroup>
<None Update="3rdPartyLicense.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="System.ServiceModel.Duplex" Version="4.4.0" />
<PackageReference Include="System.ServiceModel.Http" Version="4.4.0" />
<PackageReference Include="System.ServiceModel.NetTcp" Version="4.4.0" />
<PackageReference Include="System.ServiceModel.Security" Version="4.4.0" />
</ItemGroup>
<Target Name="PackBuildOutputs" DependsOnTargets="SatelliteDllsProjectOutputGroup;DebugSymbolsProjectOutputGroup">
<ItemGroup>
<TfmSpecificPackageFile Include="$(OutputPath)\**\Cake.SSRS.*">
<PackagePath>lib\$(TargetFramework)\</PackagePath>
</TfmSpecificPackageFile>
<TfmSpecificPackageFile Include="$(OutputPath)\**\System.Private.ServiceModel.dll">
<PackagePath>lib\$(TargetFramework)\</PackagePath>
</TfmSpecificPackageFile>
<TfmSpecificPackageFile Include="$(OutputPath)\**\System.ServiceModel.*.dll">
<PackagePath>lib\$(TargetFramework)\</PackagePath>
</TfmSpecificPackageFile>
</ItemGroup>
</Target>

</Project>

0 comments on commit dde05fe

Please sign in to comment.