Skip to content

Commit

Permalink
Use netcoreapp3.0 and update descriptions/version
Browse files Browse the repository at this point in the history
  • Loading branch information
mhutch committed Oct 16, 2019
1 parent e367df0 commit 573d5bb
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 11 deletions.
9 changes: 8 additions & 1 deletion Mono.TextTemplating/Mono.TextTemplating.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,14 @@
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<NoWarn>1591;1573</NoWarn>
<PackageId>Mono.TextTemplating</PackageId>
<Description>Open-source implementation of the T4 templating engine.</Description>
<Description>
<![CDATA[Open source implementation of the T4 templating engine
This package allows embedding the T4 engine in an application.
* To install as a dotnet global or local tool, use `dotnet-t4` instead.
* To install in a project as a `DotNetCliToolReference`, use `dotnet-t4-project-tool` instead.]]>
</Description>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<DefineConstants Condition="'$(TargetFramework)'!='netstandard2.0'">$(DefineConstants);FEATURE_APPDOMAINS</DefineConstants>
<DefineConstants Condition="'$(TargetFramework)'!='net35'">$(DefineConstants);FEATURE_ROSLYN</DefineConstants>
Expand Down
10 changes: 6 additions & 4 deletions dotnet-t4-project-tool/dotnet-t4-project-tool.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@
<AssemblyName>dotnet-t4</AssemblyName>
<PackageId>dotnet-t4-project-tool</PackageId>
<Description>
T4 text transformation commandline tool.
This package is project-installable via `DotNetCliToolReference`.
For the dotnet global tool, see `dotnet-t4`.
For the app-embeddable engine, see `Mono.TextTemplating`.
<![CDATA[Project-installable T4 text transformation commandline tool.
This package can be installed into a project using `DotNetCliToolReference`.
* To install as a dotnet global or local tool, use `dotnet-t4` instead.
* To embed the T4 engine in your app, use `Mono.TextTemplating`.]]>
</Description>
<RootNamespace>Mono.TextTemplating</RootNamespace>
</PropertyGroup>
Expand Down
12 changes: 7 additions & 5 deletions dotnet-t4/dotnet-t4.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,19 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>netcoreapp3.0</TargetFramework>
<PackAsTool>true</PackAsTool>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<AssemblyName>t4</AssemblyName>
<PackageId>dotnet-t4</PackageId>
<Description>
Commandline T4 text transformation tool.
This package can be installed as a dotnet global tool.
For the project-installable `DotNetCliToolReference` version, see `dotnet-t4-project-tool`.
For the app-embeddable engine, see `Mono.TextTemplating`.
<![CDATA[dotnet T4 text transformation tool.
This package can be installed as a dotnet global or local tool.
* To install in a project as a `DotNetCliToolReference`, use `dotnet-t4-project-tool` instead.
* To embed the T4 engine in your app, use `Mono.TextTemplating`.]]>
</Description>
<ToolCommandName>t4</ToolCommandName>
<RootNamespace>Mono.TextTemplating</RootNamespace>
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.1.0-preview.{height}",
"version": "2.2.0-preview.{height}",
"publicReleaseRefSpec": [
"^refs/tags/v\\d+\\.\\d+$",
"^refs/tags/v\\d+\\.\\d+\\.\\d+$"
Expand Down

0 comments on commit 573d5bb

Please sign in to comment.