Created
September 13, 2017 14:45
-
-
Save Redth/975ccf59db2df4b48a6f67f96c5a3420 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<TargetFrameworks>netstandard1.6;net46</TargetFrameworks> | |
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.6' ">1.6.1</NetStandardImplicitPackageVersion> | |
<GenerateDocumentationFile>true</GenerateDocumentationFile> | |
</PropertyGroup> | |
<PropertyGroup> | |
<PackageId>Cake.FileHelpers</PackageId> | |
<Title>Cake.FileHelpers</Title> | |
<Summary>Cake build aliases for Reading, Writing, and Replacing Text in files.</Summary> | |
<Description>Cake Build addon to provide Aliases for common File operations (Reading, Writing, Replacing Text).</Description> | |
<PackageTags>Cake Script Build</PackageTags> | |
<Authors>Redth</Authors> | |
<Owners>Redth</Owners> | |
<PackageProjectUrl>https://github.com/cake-contrib/Cake.FileHelpers</PackageProjectUrl> | |
<PackageIconUrl>https://raw.githubusercontent.com/cake-contrib/Cake.FileHelpers/master/icon.png</PackageIconUrl> | |
<PackageLicenseUrl>https://raw.githubusercontent.com/cake-contrib/Cake.FileHelpers/master/LICENSE.md</PackageLicenseUrl> | |
</PropertyGroup> | |
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.6' "> | |
<PackageReference Include="System.Threading.Tasks.Parallel" Version="4.3.0" /> | |
</ItemGroup> | |
<ItemGroup> | |
<PackageReference Include="Cake.Core" Version="0.22.0" /> | |
<PackageReference Include="Cake.Common" Version="0.22.0" /> | |
</ItemGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment