Why does Reflecting on own types not work in T4 template?
I have a .NET Core 2.1 ASP.NET MVC application in which I have a design time T4 template which I want to use to generate some code. Currently, it looks like this:
<#@ template debug="false" hostspecific="false" language="C#" #>
<#@ assembly name="System.Core" #>
<#@ assembly name="$(SolutionDir)BarbinDebugnetcoreapp2.1Bar.dll" #>
<#@ import namespace="System.Linq" #>
<#@ import namespace="System.Text" #>
<#@ import namespace="System.Collections.Generic" #>
<#@ import namespace="Bar" #>
<#@ output extension=".txt" #>
<#
var myType = typeof(string);
var myName = y.Name;
Write(myName);
#>
This works: the .txt file generated by this template contains "String".
However, now I have a class Foo in Foo.cs in the same folder as my template:
namespace Bar
{
public class Foo
{
}
}
Now I want to use Foo instead of string, so I just change the line
var myType = typeof(string);
to
var myType = typeof(Foo);
and save the template. Now I get an error:
Running transformation: System.IO.FileNotFoundException: Could not
load file or assembly 'System.Runtime, Version=4.2.1.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its
dependencies.
The stack trace is as follows:
File name: 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
at Microsoft.VisualStudio.TextTemplating9418B77BB4C607966DB4F31F6C9D57D97D9892B08324572567CEAC228ECCD2BE3839F9E2A0AE0ECA2D5DD0CCC161A70762C40A6D67A8DC505F3E88E86A36C7CE.GeneratedTextTransformation.TransformText()
at System.Dynamic.UpdateDelegates.UpdateAndExecute1[T0,TRet](CallSite site, T0 arg0)
at CallSite.Target(Closure , CallSite , Object )
at Microsoft.VisualStudio.TextTemplating.TransformationRunner.PerformTransformation()
Why does it throw this error? Why does reflection work for the built-in string type, but somehow depend on .NET Framework 4.2.1 for my own .NET Core 2.1 type?
c# reflection .net-core t4 asp.net-core-2.1
add a comment |
I have a .NET Core 2.1 ASP.NET MVC application in which I have a design time T4 template which I want to use to generate some code. Currently, it looks like this:
<#@ template debug="false" hostspecific="false" language="C#" #>
<#@ assembly name="System.Core" #>
<#@ assembly name="$(SolutionDir)BarbinDebugnetcoreapp2.1Bar.dll" #>
<#@ import namespace="System.Linq" #>
<#@ import namespace="System.Text" #>
<#@ import namespace="System.Collections.Generic" #>
<#@ import namespace="Bar" #>
<#@ output extension=".txt" #>
<#
var myType = typeof(string);
var myName = y.Name;
Write(myName);
#>
This works: the .txt file generated by this template contains "String".
However, now I have a class Foo in Foo.cs in the same folder as my template:
namespace Bar
{
public class Foo
{
}
}
Now I want to use Foo instead of string, so I just change the line
var myType = typeof(string);
to
var myType = typeof(Foo);
and save the template. Now I get an error:
Running transformation: System.IO.FileNotFoundException: Could not
load file or assembly 'System.Runtime, Version=4.2.1.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its
dependencies.
The stack trace is as follows:
File name: 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
at Microsoft.VisualStudio.TextTemplating9418B77BB4C607966DB4F31F6C9D57D97D9892B08324572567CEAC228ECCD2BE3839F9E2A0AE0ECA2D5DD0CCC161A70762C40A6D67A8DC505F3E88E86A36C7CE.GeneratedTextTransformation.TransformText()
at System.Dynamic.UpdateDelegates.UpdateAndExecute1[T0,TRet](CallSite site, T0 arg0)
at CallSite.Target(Closure , CallSite , Object )
at Microsoft.VisualStudio.TextTemplating.TransformationRunner.PerformTransformation()
Why does it throw this error? Why does reflection work for the built-in string type, but somehow depend on .NET Framework 4.2.1 for my own .NET Core 2.1 type?
c# reflection .net-core t4 asp.net-core-2.1
add a comment |
I have a .NET Core 2.1 ASP.NET MVC application in which I have a design time T4 template which I want to use to generate some code. Currently, it looks like this:
<#@ template debug="false" hostspecific="false" language="C#" #>
<#@ assembly name="System.Core" #>
<#@ assembly name="$(SolutionDir)BarbinDebugnetcoreapp2.1Bar.dll" #>
<#@ import namespace="System.Linq" #>
<#@ import namespace="System.Text" #>
<#@ import namespace="System.Collections.Generic" #>
<#@ import namespace="Bar" #>
<#@ output extension=".txt" #>
<#
var myType = typeof(string);
var myName = y.Name;
Write(myName);
#>
This works: the .txt file generated by this template contains "String".
However, now I have a class Foo in Foo.cs in the same folder as my template:
namespace Bar
{
public class Foo
{
}
}
Now I want to use Foo instead of string, so I just change the line
var myType = typeof(string);
to
var myType = typeof(Foo);
and save the template. Now I get an error:
Running transformation: System.IO.FileNotFoundException: Could not
load file or assembly 'System.Runtime, Version=4.2.1.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its
dependencies.
The stack trace is as follows:
File name: 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
at Microsoft.VisualStudio.TextTemplating9418B77BB4C607966DB4F31F6C9D57D97D9892B08324572567CEAC228ECCD2BE3839F9E2A0AE0ECA2D5DD0CCC161A70762C40A6D67A8DC505F3E88E86A36C7CE.GeneratedTextTransformation.TransformText()
at System.Dynamic.UpdateDelegates.UpdateAndExecute1[T0,TRet](CallSite site, T0 arg0)
at CallSite.Target(Closure , CallSite , Object )
at Microsoft.VisualStudio.TextTemplating.TransformationRunner.PerformTransformation()
Why does it throw this error? Why does reflection work for the built-in string type, but somehow depend on .NET Framework 4.2.1 for my own .NET Core 2.1 type?
c# reflection .net-core t4 asp.net-core-2.1
I have a .NET Core 2.1 ASP.NET MVC application in which I have a design time T4 template which I want to use to generate some code. Currently, it looks like this:
<#@ template debug="false" hostspecific="false" language="C#" #>
<#@ assembly name="System.Core" #>
<#@ assembly name="$(SolutionDir)BarbinDebugnetcoreapp2.1Bar.dll" #>
<#@ import namespace="System.Linq" #>
<#@ import namespace="System.Text" #>
<#@ import namespace="System.Collections.Generic" #>
<#@ import namespace="Bar" #>
<#@ output extension=".txt" #>
<#
var myType = typeof(string);
var myName = y.Name;
Write(myName);
#>
This works: the .txt file generated by this template contains "String".
However, now I have a class Foo in Foo.cs in the same folder as my template:
namespace Bar
{
public class Foo
{
}
}
Now I want to use Foo instead of string, so I just change the line
var myType = typeof(string);
to
var myType = typeof(Foo);
and save the template. Now I get an error:
Running transformation: System.IO.FileNotFoundException: Could not
load file or assembly 'System.Runtime, Version=4.2.1.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its
dependencies.
The stack trace is as follows:
File name: 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
at Microsoft.VisualStudio.TextTemplating9418B77BB4C607966DB4F31F6C9D57D97D9892B08324572567CEAC228ECCD2BE3839F9E2A0AE0ECA2D5DD0CCC161A70762C40A6D67A8DC505F3E88E86A36C7CE.GeneratedTextTransformation.TransformText()
at System.Dynamic.UpdateDelegates.UpdateAndExecute1[T0,TRet](CallSite site, T0 arg0)
at CallSite.Target(Closure , CallSite , Object )
at Microsoft.VisualStudio.TextTemplating.TransformationRunner.PerformTransformation()
Why does it throw this error? Why does reflection work for the built-in string type, but somehow depend on .NET Framework 4.2.1 for my own .NET Core 2.1 type?
c# reflection .net-core t4 asp.net-core-2.1
c# reflection .net-core t4 asp.net-core-2.1
asked Oct 7 '18 at 11:46
BasBas
1,2701329
1,2701329
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
The T4 Engine uses the .NetFramework, so it has the same issues referencing a .net core dll as any other .Net Framework app. T4 runs in a separate app domain, and does not inherit the references of your .net core project.
typeof(string) works because that is part of the .Net Framework. Your type "Foo" depends on references to .Net Core assemblies. I'm not sure it is possible to load .Net Core assemblies into T4 without porting your assembly to .Net Standard.
You could try Loading The Assembly in a Reflection-Only Context, but the usual way I see people using T4 is by accessing information of classes they have in their project through EnvDTE, Roslyn, or Visual Studio SDK. Unless there is a different reason you want to reflect into your .Net Core Assembly from T4, you will have no trouble retrieving the type information through EnvDTE!
However, I'm using an assembly directive in the code I posted, and it still can't access the types in that assembly.
– Bas
Nov 4 '18 at 9:08
Ahh I see that now. Sorry misunderstood. Hmmmm
– FakeSaint
Nov 4 '18 at 19:06
1
Updated my answer, though I'd like to hear if you end up succeeding referencing .net Core Assemblies within T4
– FakeSaint
Nov 5 '18 at 21:19
add a comment |
I got this working with a workaround.
Try putting this bindingRedirect inside the C:Users<user>AppDataLocalMicrosoftVisualStudio15.0_29f8d23adevenv.exe.config
inside <configuration>
-> <runtime>
-> <assemblyBinding>
where are all the others bindingRedirect's
<dependentAssembly>
<assemblyIdentity name="System.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="4.0.0.0"/>
</dependentAssembly>
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f52688171%2fwhy-does-reflecting-on-own-types-not-work-in-t4-template%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
The T4 Engine uses the .NetFramework, so it has the same issues referencing a .net core dll as any other .Net Framework app. T4 runs in a separate app domain, and does not inherit the references of your .net core project.
typeof(string) works because that is part of the .Net Framework. Your type "Foo" depends on references to .Net Core assemblies. I'm not sure it is possible to load .Net Core assemblies into T4 without porting your assembly to .Net Standard.
You could try Loading The Assembly in a Reflection-Only Context, but the usual way I see people using T4 is by accessing information of classes they have in their project through EnvDTE, Roslyn, or Visual Studio SDK. Unless there is a different reason you want to reflect into your .Net Core Assembly from T4, you will have no trouble retrieving the type information through EnvDTE!
However, I'm using an assembly directive in the code I posted, and it still can't access the types in that assembly.
– Bas
Nov 4 '18 at 9:08
Ahh I see that now. Sorry misunderstood. Hmmmm
– FakeSaint
Nov 4 '18 at 19:06
1
Updated my answer, though I'd like to hear if you end up succeeding referencing .net Core Assemblies within T4
– FakeSaint
Nov 5 '18 at 21:19
add a comment |
The T4 Engine uses the .NetFramework, so it has the same issues referencing a .net core dll as any other .Net Framework app. T4 runs in a separate app domain, and does not inherit the references of your .net core project.
typeof(string) works because that is part of the .Net Framework. Your type "Foo" depends on references to .Net Core assemblies. I'm not sure it is possible to load .Net Core assemblies into T4 without porting your assembly to .Net Standard.
You could try Loading The Assembly in a Reflection-Only Context, but the usual way I see people using T4 is by accessing information of classes they have in their project through EnvDTE, Roslyn, or Visual Studio SDK. Unless there is a different reason you want to reflect into your .Net Core Assembly from T4, you will have no trouble retrieving the type information through EnvDTE!
However, I'm using an assembly directive in the code I posted, and it still can't access the types in that assembly.
– Bas
Nov 4 '18 at 9:08
Ahh I see that now. Sorry misunderstood. Hmmmm
– FakeSaint
Nov 4 '18 at 19:06
1
Updated my answer, though I'd like to hear if you end up succeeding referencing .net Core Assemblies within T4
– FakeSaint
Nov 5 '18 at 21:19
add a comment |
The T4 Engine uses the .NetFramework, so it has the same issues referencing a .net core dll as any other .Net Framework app. T4 runs in a separate app domain, and does not inherit the references of your .net core project.
typeof(string) works because that is part of the .Net Framework. Your type "Foo" depends on references to .Net Core assemblies. I'm not sure it is possible to load .Net Core assemblies into T4 without porting your assembly to .Net Standard.
You could try Loading The Assembly in a Reflection-Only Context, but the usual way I see people using T4 is by accessing information of classes they have in their project through EnvDTE, Roslyn, or Visual Studio SDK. Unless there is a different reason you want to reflect into your .Net Core Assembly from T4, you will have no trouble retrieving the type information through EnvDTE!
The T4 Engine uses the .NetFramework, so it has the same issues referencing a .net core dll as any other .Net Framework app. T4 runs in a separate app domain, and does not inherit the references of your .net core project.
typeof(string) works because that is part of the .Net Framework. Your type "Foo" depends on references to .Net Core assemblies. I'm not sure it is possible to load .Net Core assemblies into T4 without porting your assembly to .Net Standard.
You could try Loading The Assembly in a Reflection-Only Context, but the usual way I see people using T4 is by accessing information of classes they have in their project through EnvDTE, Roslyn, or Visual Studio SDK. Unless there is a different reason you want to reflect into your .Net Core Assembly from T4, you will have no trouble retrieving the type information through EnvDTE!
edited Nov 21 '18 at 5:06
answered Nov 4 '18 at 5:26
FakeSaintFakeSaint
636
636
However, I'm using an assembly directive in the code I posted, and it still can't access the types in that assembly.
– Bas
Nov 4 '18 at 9:08
Ahh I see that now. Sorry misunderstood. Hmmmm
– FakeSaint
Nov 4 '18 at 19:06
1
Updated my answer, though I'd like to hear if you end up succeeding referencing .net Core Assemblies within T4
– FakeSaint
Nov 5 '18 at 21:19
add a comment |
However, I'm using an assembly directive in the code I posted, and it still can't access the types in that assembly.
– Bas
Nov 4 '18 at 9:08
Ahh I see that now. Sorry misunderstood. Hmmmm
– FakeSaint
Nov 4 '18 at 19:06
1
Updated my answer, though I'd like to hear if you end up succeeding referencing .net Core Assemblies within T4
– FakeSaint
Nov 5 '18 at 21:19
However, I'm using an assembly directive in the code I posted, and it still can't access the types in that assembly.
– Bas
Nov 4 '18 at 9:08
However, I'm using an assembly directive in the code I posted, and it still can't access the types in that assembly.
– Bas
Nov 4 '18 at 9:08
Ahh I see that now. Sorry misunderstood. Hmmmm
– FakeSaint
Nov 4 '18 at 19:06
Ahh I see that now. Sorry misunderstood. Hmmmm
– FakeSaint
Nov 4 '18 at 19:06
1
1
Updated my answer, though I'd like to hear if you end up succeeding referencing .net Core Assemblies within T4
– FakeSaint
Nov 5 '18 at 21:19
Updated my answer, though I'd like to hear if you end up succeeding referencing .net Core Assemblies within T4
– FakeSaint
Nov 5 '18 at 21:19
add a comment |
I got this working with a workaround.
Try putting this bindingRedirect inside the C:Users<user>AppDataLocalMicrosoftVisualStudio15.0_29f8d23adevenv.exe.config
inside <configuration>
-> <runtime>
-> <assemblyBinding>
where are all the others bindingRedirect's
<dependentAssembly>
<assemblyIdentity name="System.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="4.0.0.0"/>
</dependentAssembly>
add a comment |
I got this working with a workaround.
Try putting this bindingRedirect inside the C:Users<user>AppDataLocalMicrosoftVisualStudio15.0_29f8d23adevenv.exe.config
inside <configuration>
-> <runtime>
-> <assemblyBinding>
where are all the others bindingRedirect's
<dependentAssembly>
<assemblyIdentity name="System.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="4.0.0.0"/>
</dependentAssembly>
add a comment |
I got this working with a workaround.
Try putting this bindingRedirect inside the C:Users<user>AppDataLocalMicrosoftVisualStudio15.0_29f8d23adevenv.exe.config
inside <configuration>
-> <runtime>
-> <assemblyBinding>
where are all the others bindingRedirect's
<dependentAssembly>
<assemblyIdentity name="System.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="4.0.0.0"/>
</dependentAssembly>
I got this working with a workaround.
Try putting this bindingRedirect inside the C:Users<user>AppDataLocalMicrosoftVisualStudio15.0_29f8d23adevenv.exe.config
inside <configuration>
-> <runtime>
-> <assemblyBinding>
where are all the others bindingRedirect's
<dependentAssembly>
<assemblyIdentity name="System.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="4.0.0.0"/>
</dependentAssembly>
answered Jan 22 at 19:38


lmcarreirolmcarreiro
1,5591929
1,5591929
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f52688171%2fwhy-does-reflecting-on-own-types-not-work-in-t4-template%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown