-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Add framework guide for .NET #2044
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@marshalhayes Just tried this works well but how do you get tailwind to rebuild the css when using Blazor hot reload when classes in the components change? The build step seems one and done no matter how I tweak it |
That is a great question, @cdock1029. To be honest, I didn't put much thought into this at the time. After thinking about how this could work for the last few days, I'm introducing a few changes which should get us close to an ideal solution. Download path: The current solution downloads the Tailwind CLI inside I've modified the download to be placed in one of two places:
Projects that reference the same version would then share the same executable. The download directory can also be overridden if needed. For example: <PropertyGroup>
<TailwindDownloadPath>/tmp/tailwind</TailwindDownloadPath>
</PropertyGroup> Configurable input & output stylesheets: References to the stylesheets were somewhat buried in the project file. I've restructured the csproj to make these more obvious. <PropertyGroup>
<InputStyleSheetPath>Styles/main.css</InputStyleSheetPath>
<OutputStyleSheetPath>wwwroot/main.build.css</OutputStyleSheetPath>
</PropertyGroup> Separating Tailwind from the csproj: When I was digging through the MSBuild docs, I found that a csproj can import a targets file. I've moved all of the Tailwind MSBuild functionality to a separate file (Tailwind.targets), which the csproj imports. <!-- myapp.csproj -->
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>
<Import Project="Tailwind.targets" />
</Project> <!-- Tailwind.targets -->
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- Omitted for brevity -->
</Project> This greatly simplifies the csproj file, and allows users to share the targets across multiple projects. And lastly, to the question at hand: Hot reload: This is a weird one. I cannot find a way to run Tailwind's watch functionality automatically when For example, this would only run when inside <Exec Command="echo 'Inside dotnet watch'" Condition="$(DOTNET_WATCH) == '1'" /> So, you could do this: <Target Name="Tailwind" DependsOnTargets="DownloadTailwind" BeforeTargets="Build">
<PropertyGroup>
<TailwindBuildCommand>$(TailwindCliPath) -i $(InputStyleSheetPath) -o $(OutputStyleSheetPath)</TailwindBuildCommand>
</PropertyGroup>
<Exec Command="$(TailwindBuildCommand) --watch" Condition="$(DOTNET_WATCH) == '1'"/>
<Exec Command="$(TailwindBuildCommand)" Condition="$(DOTNET_WATCH) != '1' And '$(Configuration)' == 'Debug'"/>
<Exec Command="$(TailwindBuildCommand) --minify" Condition="$(DOTNET_WATCH) != '1' And '$(Configuration)' == 'Release'"/>
</Target> ...except that the It is not clear to me how to safely run Tailwind's watch functionality via MSBuild. If it's executed as part of For now, I'm adding this to the framework guide: <!-- When building the project, run the Tailwind CLI -->
<!-- This target can also be executed manually. For example, with dotnet watch: `dotnet watch msbuild /t:Tailwind` -->
<!-- In order to use hot reload, run both `dotnet watch run` and `dotnet watch msbuild /t:Tailwind` -->
<Target Name="Tailwind" DependsOnTargets="DownloadTailwind" BeforeTargets="Build">
<!-- Omitted for brevity -->
</Target> This will allow us to at least not have to find the Tailwind CLI ourselves, but instead let MSBuild do it. The only downside is you have to run both |
I thought of a few more improvements I can make to this. I'll send another update later tonight. |
At this point, I would love to hear feedback on this guide. Is there anything missing that we should add? |
I would like to point out that I've tested this with both v3 & v4, and it works well. This solution also supports all the standalone CLI parameters:
Here's what this solution supports:
|
There was a bug found on Windows regarding the download path. I'll introduce a fix tomorrow. |
I am also experimenting with making this a NuGet package: https://github.com/marshalhayes/Tailwind.Standalone Here is a link to the initial version. This approach comes with a few benefits in terms of releasing future versions, but with more maintenance cost. I'd be interested in hearing thoughts on which approach is preferred. Should I add tabs to the .NET framework guide, one for the copy-pasted Tailwind.targets file & another for the NuGet version? Would the Tailwind team be interested in taking ownership of this NuGet package? |
Hi @marshalhayes you did a great job here! Here's the out-of-box features
I'm also able for that, would be awesome to turn it as official package cc @cdock1029 |
Thanks for sharing. The purpose of this framework guide is to do exactly that: define a standard way of using Tailwind with .NET. What are your thoughts on the framework guide? |
Seems that you've been duplicating something that I already did. It already includes all Off course I'm totally able to cherry-pick your sources for co-working 🙏 |
Well, to be clear, I didn't duplicate anything. I didn't know this even existed. @kallebysantos, if you want to propose a different solution, I'd recommend opening a separate PR. I like that your solution supports I'd be interested in the Tailwind team's feedback here. As far as the framework guide goes, would recommending installing Tailwind via a NuGet package be more preferred over the Tailwind.targets file, or some combination of both? |
Maybe I explain myself wrong, I know that 💚
My fault - It was supposed to me announce it like 1y ago, but I never feel confident to it until last week when I decide to post it on reddit. Then I saw that you share the same challenges that I had |
No worries. I totally get it. There are certainly quite a few .NET implementations that are essentially doing the same thing. Here are some of the most popular ones (according to NuGet downloads):
I'm not attached to one particular solution over another, but I think we agree having so many choices makes it difficult to know which is the right one. Let's let the Tailwind team weigh in here. |
This PR introduces documentation for setting up Tailwind CSS with .NET projects using the standalone CLI.
This is similar to #1914, but for v4.