Skip to content

Commit

Permalink
Updated version number to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
RdJNL committed Apr 2, 2020
1 parent 4585d42 commit 297eff3
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# T4 Text Templating with .NET Core
# T4 Text Templating with .NET Core
The software in this repository allows you to run a T4 template with the .NET Core 3.1 runtime. This means you can load .NET Core 3.1 assemblies and use .NET Core 3.1 libraries. My team uses it to generate C# code for types in a Core assembly (using Reflection). We also use it to process a JSON file using .NET Core's System.Text.Json library.

__Author:__ RdJNL

## Latest release
Version 1.0.0 can be downloaded [here](https://github.com/RdJNL/TextTemplatingCore/releases/download/v1.0.0/TextTemplatingCore_v1.0.0.zip).
Version 1.0.1 can be downloaded [here](https://github.com/RdJNL/TextTemplatingCore/releases/download/v1.0.1/TextTemplatingCore_v1.0.1.zip).

## Requirements
- .NET Core 3.1
Expand Down
4 changes: 2 additions & 2 deletions TextTemplatingFileGeneratorCore/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.0.1.0")]
[assembly: AssemblyFileVersion("1.0.1.0")]
2 changes: 1 addition & 1 deletion TextTemplatingFileGeneratorCore/VSPackage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public sealed class VSPackage : AsyncPackage
public const string PACKAGE_GUID = "68C949A0-7E31-4336-82A1-DBAEFCD2AE62";
public const string PACKAGE_NAME = "Text Templating File Generator .NET Core";
public const string PACKAGE_DESCRIPTION = TextTemplatingFileGeneratorCore.GENERATOR_DESCRIPTION;
public const string PACKAGE_VERSION = "1.0";
public const string PACKAGE_VERSION = "1.0.1";

protected override async Task InitializeAsync(CancellationToken cancellationToken, IProgress<ServiceProgressData> progress)
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="RdJNL.TextTemplatingCore.Generator.85b769de-38f5-4cbe-91ae-d0dfa431fe30" Version="1.0" Language="en-US" Publisher="RdJNL" />
<Identity Id="RdJNL.TextTemplatingCore.Generator.85b769de-38f5-4cbe-91ae-d0dfa431fe30" Version="1.0.1" Language="en-US" Publisher="RdJNL" />
<DisplayName>Text Templating File Generator .NET Core</DisplayName>
<Description xml:space="preserve">Generate files from T4 templates using the .NET Core 3.1 runtime.</Description>
<License>LICENSE</License>
Expand Down
4 changes: 2 additions & 2 deletions TextTransformCore/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.0.1.0")]
[assembly: AssemblyFileVersion("1.0.1.0")]

0 comments on commit 297eff3

Please sign in to comment.