Skip to content
This repository has been archived by the owner on Mar 22, 2023. It is now read-only.

Run manually via dotnet / console #5

Closed
braidenstiller opened this issue Jan 4, 2021 · 3 comments
Closed

Run manually via dotnet / console #5

braidenstiller opened this issue Jan 4, 2021 · 3 comments

Comments

@braidenstiller
Copy link

Is it possible to run the nuget package manually in the console outside of dotnet build? For example rebuilding the sass files while debugging?

@johan-v-r
Copy link
Owner

No not yet. I was thinking about making this into a global tool at some point which could do that.

In the meantime, see if dotnet watch could work for you? That's how I use it most of the time.

I add this to my csproj

<ItemGroup>
    <!-- extends watching group - https://docs.microsoft.com/en-us/aspnet/core/tutorials/dotnet-watch?view=aspnetcore-5.0#customize-files-list-to-watch -->
    <Watch Include="**\*.scss" Exclude="**\*.css" />
</ItemGroup>

Then run it with dotnet watch run

@johan-v-r
Copy link
Owner

I've published a global tool now as well. See readme and please let me know if this works for you?

@braidenstiller
Copy link
Author

Perfect. Thanks for the quick turnaround johan 👍

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants