Skip to content

Commit 1b86652

Browse files
committed
Updated version number to 1.1.0
1 parent 6aa471d commit 1b86652

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# T4 Text Templating with .NET Core
2-
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.
1+
# T4 Text Templating with .NET 5
2+
The software in this repository allows you to run a T4 template with the .NET 5 runtime. This means you can load .NET Core and .NET 5 assemblies and use .NET 5 libraries. My team uses it to generate C# code for types in a .NET Core 3.1 assembly (using Reflection). We also use it to process a JSON file using .NET 5's System.Text.Json library.
33

44
__Author:__ RdJNL
55

66
## Latest release
7-
Version 1.0.1 can be downloaded [here](https://github.com/RdJNL/TextTemplatingCore/releases/download/v1.0.1/TextTemplatingCore_v1.0.1.zip).
7+
Version 1.1.0 can be downloaded [here](https://github.com/RdJNL/TextTemplatingCore/releases/download/v1.1.0/TextTemplatingCore_v1.1.0.zip).
88

99
## Requirements
10-
- .NET Core 3.1
10+
- .NET 5
1111
- .NET Framework 4.8
1212
- Visual Studio 2019 (for the VS extension)
1313

@@ -37,7 +37,7 @@ This processor has one feature that Visual Studio's processor does not have:
3737
## How does it work?
3838
The following steps are followed to process the T4 template:
3939
- .NET Framework 4.8 code (either the VS extension or the TextTransformCore executable) uses Visual Studio's T4 template processor to preprocess the template into C# code. This C# code is saved to a temporary file.
40-
- The .NET Framework code runs a .NET Core 3.1 executable which compiles the C# code and runs it. The result is once again saved to a temporary file.
40+
- The .NET Framework code runs a .NET 5 executable which compiles the C# code and runs it. The result is once again saved to a temporary file.
4141
- The .NET Framework code loads the content of the temporary file and either passes it to Visual Studio (the VS extension) or saves it to the output file (the TextTransformCore executable).
4242

4343
## License

TextTemplatingFileGeneratorCore/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929
// You can specify all the values or you can default the Build and Revision Numbers
3030
// by using the '*' as shown below:
3131
// [assembly: AssemblyVersion("1.0.*")]
32-
[assembly: AssemblyVersion("1.0.1.0")]
33-
[assembly: AssemblyFileVersion("1.0.1.0")]
32+
[assembly: AssemblyVersion("1.1.0.0")]
33+
[assembly: AssemblyFileVersion("1.1.0.0")]

TextTemplatingFileGeneratorCore/TextTemplatingFileGeneratorCore.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public sealed class TextTemplatingFileGeneratorCore : BaseTemplatedCodeGenerator
2222
{
2323
public const string GENERATOR_GUID = "85B769DE-38F5-4CBE-91AE-D0DFA431FE30";
2424
public const string GENERATOR_NAME = nameof(TextTemplatingFileGeneratorCore);
25-
public const string GENERATOR_DESCRIPTION = "Generate files from T4 templates using the .NET Core 3.1 runtime.";
25+
public const string GENERATOR_DESCRIPTION = "Generate files from T4 templates using the .NET 5 runtime.";
2626

2727
private const string ERROR_OUTPUT = "ErrorGeneratingOutput";
2828
private const string TEMPLATE_NAMESPACE = "RdJNL.TextTemplatingCore.GeneratedTemplate";

TextTemplatingFileGeneratorCore/VSPackage.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ namespace RdJNL.TextTemplatingCore.TextTemplatingFileGeneratorCore
1818
public sealed class VSPackage : AsyncPackage
1919
{
2020
public const string PACKAGE_GUID = "68C949A0-7E31-4336-82A1-DBAEFCD2AE62";
21-
public const string PACKAGE_NAME = "Text Templating File Generator .NET Core";
21+
public const string PACKAGE_NAME = "Text Templating File Generator .NET 5";
2222
public const string PACKAGE_DESCRIPTION = TextTemplatingFileGeneratorCore.GENERATOR_DESCRIPTION;
23-
public const string PACKAGE_VERSION = "1.0.1";
23+
public const string PACKAGE_VERSION = "1.1.0";
2424

2525
protected override async Task InitializeAsync(CancellationToken cancellationToken, IProgress<ServiceProgressData> progress)
2626
{

TextTemplatingFileGeneratorCore/source.extension.vsixmanifest

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<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">
33
<Metadata>
4-
<Identity Id="RdJNL.TextTemplatingCore.Generator.85b769de-38f5-4cbe-91ae-d0dfa431fe30" Version="1.0.1" Language="en-US" Publisher="RdJNL" />
5-
<DisplayName>Text Templating File Generator .NET Core</DisplayName>
6-
<Description xml:space="preserve">Generate files from T4 templates using the .NET Core 3.1 runtime.</Description>
4+
<Identity Id="RdJNL.TextTemplatingCore.Generator.85b769de-38f5-4cbe-91ae-d0dfa431fe30" Version="1.1.0" Language="en-US" Publisher="RdJNL" />
5+
<DisplayName>Text Templating File Generator .NET 5</DisplayName>
6+
<Description xml:space="preserve">Generate files from T4 templates using the .NET 5 runtime.</Description>
77
<License>LICENSE</License>
88
</Metadata>
99
<Installation>

TextTransformCore/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929
// You can specify all the values or you can default the Build and Revision Numbers
3030
// by using the '*' as shown below:
3131
// [assembly: AssemblyVersion("1.0.*")]
32-
[assembly: AssemblyVersion("1.0.1.0")]
33-
[assembly: AssemblyFileVersion("1.0.1.0")]
32+
[assembly: AssemblyVersion("1.1.0.0")]
33+
[assembly: AssemblyFileVersion("1.1.0.0")]

0 commit comments

Comments
 (0)