-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to include Dependencies for .NET Standard
- Loading branch information
1 parent
845297d
commit f696a34
Showing
4 changed files
with
50 additions
and
54 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |