Skip to content

Instantly share code, notes, and snippets.

@jonhilt
Last active January 10, 2022 17:41
Show Gist options
  • Save jonhilt/994242bd4f2c243dec764ea3500e44bd to your computer and use it in GitHub Desktop.
Save jonhilt/994242bd4f2c243dec764ea3500e44bd to your computer and use it in GitHub Desktop.
Testing out copying mudblazor files for intellisense purposes
<Target Name="CollectMudBlazorStaticAssets" DependsOnTargets="ResolveStaticWebAssetsInputs" AfterTargets="Build" Condition=" '$(Configuration)' == 'Debug' ">
<Copy SourceFiles="%(StaticWebAsset.Identity)" DestinationFolder="wwwroot/temp" Condition="$([System.String]::Copy(%(StaticWebAsset.Identity)).Contains('mudblazor'))" />
</Target>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment