Nuget install of 7.4 beta 2 into an empty .net 4.5.2 project in VS2015 gave the following error:-
"Error An error occurred while applying transformation to 'web.config' in project 'umb74' No element in the source document matches '/configuration/system.web/compilation/assemblies/add[@assembly='Umbraco.ModelsBuilder']'"
This is a W10 machine with latest updates and VS2015 Community Edition.
In case you missed it; that issue has a work around that you can apply and move forward; it's been recognised and a PR has been generated for the ModelsBuilder nuget package.
Here's the work around for convenience:
Make sure the following minimum configuration is present in your web.config prior to installing the Nuget packages:
<system.web>
<compilation >
<assemblies> <!-- this is expected to be present -->
</assemblies>
<buildProviders> <!-- this is expected to be present -->
</buildProviders>
</compilation>
</system.web>
7.4 beta 2 Installation error
Nuget install of 7.4 beta 2 into an empty .net 4.5.2 project in VS2015 gave the following error:-
"Error An error occurred while applying transformation to 'web.config' in project 'umb74' No element in the source document matches '/configuration/system.web/compilation/assemblies/add[@assembly='Umbraco.ModelsBuilder']'"
This is a W10 machine with latest updates and VS2015 Community Edition.
Just some feedback,
Cheers,
Craig
This would best be reported at: http://issues.umbraco.org/issues
Thanks Nicholas. It has been done as you suggested. http://issues.umbraco.org/issue/U4-7755 :)
In case you missed it; that issue has a work around that you can apply and move forward; it's been recognised and a PR has been generated for the ModelsBuilder nuget package.
Here's the work around for convenience:
Make sure the following minimum configuration is present in your web.config prior to installing the Nuget packages:
Didn't miss it, it worked for me. Just forgot about it on our, so glad to mark your contrib up as the solution :)
is working on a reply...