Pranav K
Pranav K
Please use https://github.com/dotnet/aspnetcore/issues/31007 for questions and discussions.
Please use https://github.com/dotnet/aspnetcore/issues/32483 for questions and further discussion.
Does clearing bin and obj fix the issue? Also it looks like O# is throwing a null-ref. Perhaps that's causing design time completion to be incorrect?
The suggestion from the msbuild team is to have two sets of binaries - one compiled against desktop msbuild and one compiled against the .NET Core flavor binary and use...
Yup, that's the plan.
@twilly86 you shouldn't need the obj directory since all it has is cs files that get compiled in to your primary dll. > 2 minute startup time since all the...
@twilly86 - the cs files from the obj/codegen directory get compiled in to the application's binary which is why you don't need them (or the Views directory) as part of...
That didn't actually create new packages. I think you'd have to create a new csproj that produces the new package. Additionally we would change `RazorGenerator.Mvc` to ``RazorGenerator.Mvc.Core` and only contain...
Not sure I follow - what types would require namespace change?
MSBuild calls `nuget.exe pack` as part of building the project - https://github.com/RazorGenerator/RazorGenerator/blob/master/.nuget/NuGet.targets#L61-L71. Calling `build.ps1` from the root of the repo should get you the packages.