Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Microsoft.NET.Sdk.StaticWebAssets.targets unable to publish when static web assets been removed after build phase #56755

Closed
1 task done
doggy8088 opened this issue Jul 12, 2024 · 3 comments
Labels
area-blazor Includes: Blazor, Razor Components ✔️ Resolution: Answered Resolved because the question asked by the original author has been answered. question Status: Resolved

Comments

@doggy8088
Copy link
Contributor

Is there an existing issue for this?

  • I have searched the existing issues

Is your feature request related to a problem? Please describe the problem.

I have an ASP․NET Core Web API project. I'd like to add front-end files to the wwwroot folder during publish the project to the output directory.

  1. Assume that I have a wwwroot\.gitkeep file in the project.

  2. During dotnet build, no files will be copy to the wwwroot\ folder.

  3. I defined a Target to remove all files from wwwroot\ folder and copy all related files from another folder to the wwwroot\ folder which run before StaticWebAssetsPrepareForPublish target.

    <Target Name="NpmInstall" BeforeTargets="NpmRunBuild" Inputs="Client\package.json" Outputs="Client\node_modules\.package-lock.json">
      <Exec Command="npm install --force" Condition="'$(RestorePackagesWithLockFile)' != 'true'"
        WorkingDirectory="./Client" />
    </Target>
    <Target Name="NpmRunBuild" BeforeTargets="StaticWebAssetsPrepareForPublish" Inputs="Client\package.json" Outputs="wwwroot\index.html">
      <Exec Command="npm run build:dev" WorkingDirectory="./Client" Condition="'$(Configuration)' == 'Release' and '$(EnvironmentName)' == 'Development'" />
      <Exec Command="npm run build" WorkingDirectory="./Client" Condition="'$(Configuration)' == 'Release' and '$(EnvironmentName)' == 'Production'" />
    </Target>
  4. When I run dotnet publish, I will get an error like this: error MSB3030: Could not copy the file "D:\a\1\s\my-project\wwwroot\.gitkeep" because it was not found. [D:\a\1\s\my-project\my-project.csproj].

It seems all files existed in the build phase can't be removed during publish.

Describe the solution you'd like

I'd like to have a feature that can add/remove static files to the wwwroot folder during publish.

Additional context

N/A

@dotnet-issue-labeler dotnet-issue-labeler bot added the area-blazor Includes: Blazor, Razor Components label Jul 12, 2024
@javiercn
Copy link
Member

@doggy8088 thanks for contacting us.

This is a dupe of #38445

We don't recommend putting the outputs from your build where the inputs live, that causes serious problems to the build.

You can use the JavaScript project in Visual Studio to have all your JavaScript and build logic in one place and have ASP.NET Consume it. This is an old project that I have https://github.com/javiercn/EsProjRclIntegrationWebApp and might need some tweaking, but it's the most straightforward way to do this.

@javiercn javiercn added question ✔️ Resolution: Answered Resolved because the question asked by the original author has been answered. labels Jul 13, 2024
@doggy8088
Copy link
Contributor Author

doggy8088 commented Jul 13, 2024

@javiercn The https://github.com/javiercn/EsProjRclIntegrationWebApp project seems not exist or private. I see HTTP 404 for the link.

Copy link
Contributor

This issue has been resolved and has not had any activity for 1 day. It will be closed for housekeeping purposes.

See our Issue Management Policies for more information.

@github-actions github-actions bot locked and limited conversation to collaborators Aug 14, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
area-blazor Includes: Blazor, Razor Components ✔️ Resolution: Answered Resolved because the question asked by the original author has been answered. question Status: Resolved
Projects
None yet
Development

No branches or pull requests

2 participants