Skip to content

Commit

Permalink
(GH-141) Update cake support to 1.0.0
Browse files Browse the repository at this point in the history
fixes #141
  • Loading branch information
AdmiringWorm committed Feb 13, 2021
1 parent 7408b75 commit 84b13f9
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
4 changes: 3 additions & 1 deletion docs/input/_Footer.cshtml
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
Copyright &copy; 2017-2018 <a href="https://github.com/AdmiringWorm" target="_blank">Kim J. Nordmo</a>
Copyright &copy; 2017-@(System.DateTime.Today.Year) <a href="https://github.com/AdmiringWorm" target="_blank">
Kim J. Nordmo
</a>
9 changes: 7 additions & 2 deletions docs/input/index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ NoGutter: false
---

<div class="container-fluid">
<h1>What is it?</h1>
<h1>What is it?</h1>
<p>
Cake.Transifex is an addin for the Cake Build script adding support for working with the localization service Transifex.
Cake.Transifex is an addin for the Cake Build script adding support for working with the localization service
Transifex.
This addin requires that the transifex client is already installed and is available as `tx`.
</p>

Expand All @@ -25,6 +26,10 @@ NoGutter: false
</p>

<h3>Cake support</h3>
<p>
Starting from version 1.0.0 of Cake.Transifex, only Cake 1.0.0 and higher
is supported.
</p>
<p>
This addin makes use of the .NET Standard 2.0 framework, which should work
on both .NET Core 2.0+, and .NET Framework 4.6+.
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Transifex.Tests/Cake.Transifex.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<PackageReference Include="Shouldly" Version="4.0.3" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
<PackageReference Include="Cake.Testing" Version="0.38.5" />
<PackageReference Include="Cake.Testing" Version="1.0.0" />
<PackageReference Include="coverlet.msbuild" Version="3.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
Expand Down
4 changes: 3 additions & 1 deletion src/Cake.Transifex/Cake.Transifex.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
Cake.Transifex is a addin for the Cake Build script adding support for working with the localization service Transifex.
This addin requires that the transifex client is already installed and is available as `tx`.
To install the transifex client, install python, then run `pip install transifex-client`.

Supports Cake 1.0.0+
</Description>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\Cake.Transifex.xml</DocumentationFile>
<NeutralLanguage>en-GB</NeutralLanguage>
Expand Down Expand Up @@ -39,7 +41,7 @@ To install the transifex client, install python, then run `pip install transifex
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Cake.Core" Version="0.33.0" PrivateAssets="All" />
<PackageReference Include="Cake.Core" Version="1.0.0" PrivateAssets="All" />
<PackageReference Include="CakeContrib.Guidelines" Version="0.5.0" PrivateAssets="All" />
<PackageReference Include="Roslynator.Analyzers" Version="3.1.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down

0 comments on commit 84b13f9

Please sign in to comment.