-
Notifications
You must be signed in to change notification settings - Fork 6
/
RxBlazor.csproj
25 lines (21 loc) · 1.02 KB
/
RxBlazor.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RunCommand>dotnet</RunCommand>
<RunArguments>blazor serve</RunArguments>
<LangVersion>7.3</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Blazor.Browser" Version="0.5.1" />
<PackageReference Include="Microsoft.AspNetCore.Blazor.Build" Version="0.5.1" />
<DotNetCliToolReference Include="Microsoft.AspNetCore.Blazor.Cli" Version="0.5.1" />
<PackageReference Include="System.Reactive" Version="4.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(DotNetWatchBuild)'=='true'">
<Watch Include="**/*.cshtml;**/*.scss" Visible="false" />
</ItemGroup>
<Target Name="CompileSCSS" BeforeTargets="Build" Condition="Exists('App.scss')">
<Message Importance="high" Text="Compiling SCSS" />
<Exec Command="scss --no-cache --update ./App.scss:./wwwroot/css/App.css" />
</Target>
</Project>