I have downloaded the latest 5.06 build (Angular/Core .Net 4.61), and used a Git repo on VSTS.
My base path for the repo is c:\Code\Repos\CC
When I attempt to build, I get the following error:
Severity Code Description Project File Line Suppression State Error CS1926 Error opening Win32 manifest file C:\src\shared\utils\chat-message.component.html -- Could not find a part of the path 'C:\src\shared\utils\chat-message.component.html'. CompleteFootball.AngularUI C:\Code\Repos\CC\angular\CSC 1 Active
I am able to get past this by creating a dummy file in the path mentioned, but this is not the right approach. It would seem something is referencing a hard-coded path?
Anyone else have the same problem?
Thanks Brandon
3 Answer(s)
-
0
The problem is in CompleteFootball.AngularUI.csproj. The following line has a forward slash at the start.
<ApplicationManifest>\src\shared\utils\chat-message.component.html</ApplicationManifest>
To fix the problem, open the file in notepad and remove the preceding slash. i.e. change the line to be
<ApplicationManifest>src\shared\utils\chat-message.component.html</ApplicationManifest>
Thanks Brandon
-
0
Apologies. A better resolution is to just empty the Application manifest node i.e. change it to <ApplicationManifest></ApplicationManifest>
Angular solution now builds.
-
0
Thanks @brandonmurphy,
we will fix it for the next release <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero-core/issues/732">https://github.com/aspnetzero/aspnet-ze ... issues/732</a>.