BlazorStart/Start/Client/Start.Client.csproj

158 lines
6.9 KiB
XML
Raw Normal View History

2021-11-13 03:21:59 +00:00
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<ServiceWorkerAssetsManifest>service-worker-assets.js</ServiceWorkerAssetsManifest>
<Nullable>enable</Nullable>
<WarningsAsErrors>Nullable</WarningsAsErrors>
</PropertyGroup>
2021-12-09 05:59:43 +00:00
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<CustomCommands>
<CustomCommands>
<Command>
<type>BeforeBuild</type>
<command>sass ${ProjectDir}/Sass/Spectre/spectre.scss ${ProjectDir}/wwwroot/css/spectre/spectre.css</command>
<workingdir>${ProjectDir}</workingdir>
</Command>
<Command>
<type>BeforeBuild</type>
<command>sass ${ProjectDir}/Sass/Spectre/spectre-exp.scss ${ProjectDir}/wwwroot/css/spectre/spectre-exp.css</command>
<workingdir>${ProjectDir}</workingdir>
</Command>
<Command>
<type>BeforeBuild</type>
<command>sass ${ProjectDir}/Sass/Spectre/spectre-icons.scss ${ProjectDir}/wwwroot/css/spectre/spectre-icons.css</command>
<workingdir>${ProjectDir}</workingdir>
</Command>
<Command>
<type>BeforeBuild</type>
<command>sass ${ProjectDir}/Sass/app.scss ${ProjectDir}/wwwroot/css/app.css</command>
<workingdir>${ProjectDir}</workingdir>
</Command>
2021-12-11 06:37:36 +00:00
<Command>
<type>BeforeBuild</type>
<command>sass ${ProjectDir}/Sass/dark-mode.scss ${ProjectDir}/wwwroot/css/dark-mode.css</command>
<workingdir>${ProjectDir}</workingdir>
</Command>
2021-12-09 05:59:43 +00:00
</CustomCommands>
</CustomCommands>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<CustomCommands>
<CustomCommands>
<Command>
<type>BeforeBuild</type>
<command>sass --style=compressed ${ProjectDir}/Sass/Spectre/spectre.scss ${ProjectDir}/wwwroot/css/spectre/spectre.css</command>
<workingdir>${ProjectDir}</workingdir>
</Command>
<Command>
<type>BeforeBuild</type>
<command>sass --style=compressed ${ProjectDir}/Sass/Spectre/spectre-exp.scss ${ProjectDir}/wwwroot/css/spectre/spectre-exp.css</command>
<workingdir>${ProjectDir}</workingdir>
</Command>
<Command>
<type>BeforeBuild</type>
<command>sass --style=compressed ${ProjectDir}/Sass/Spectre/spectre-icons.scss ${ProjectDir}/wwwroot/css/spectre/spectre-icons.css</command>
<workingdir>${ProjectDir}</workingdir>
</Command>
<Command>
<type>BeforeBuild</type>
<command>sass --style=compressed ${ProjectDir}/Sass/app.scss ${ProjectDir}/wwwroot/css/app.css</command>
<workingdir>${ProjectDir}</workingdir>
</Command>
2021-12-11 06:37:36 +00:00
<Command>
<type>BeforeBuild</type>
<command>sass --style=compressed ${ProjectDir}/Sass/dark-mode.scss ${ProjectDir}/wwwroot/css/dark-mode.css</command>
<workingdir>${ProjectDir}</workingdir>
</Command>
2021-12-09 05:59:43 +00:00
</CustomCommands>
</CustomCommands>
</PropertyGroup>
2021-11-13 03:21:59 +00:00
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Start' ">
<ExternalConsole>true</ExternalConsole>
</PropertyGroup>
2021-12-09 05:59:43 +00:00
<Target Name="DeleteBuiltCss" AfterTargets="Clean">
<Message Text="Deleting built CSS files" />
<Delete Files="$(ProjectDir)/wwwroot/css/spectre/spectre.css" />
<Delete Files="$(ProjectDir)/wwwroot/css/spectre/spectre.css.map" />
<Delete Files="$(ProjectDir)/wwwroot/css/spectre/spectre-exp.css" />
<Delete Files="$(ProjectDir)/wwwroot/css/spectre/spectre-exp.css.map" />
<Delete Files="$(ProjectDir)/wwwroot/css/spectre/spectre-icons.css" />
<Delete Files="$(ProjectDir)/wwwroot/css/spectre/spectre-icons.css.map" />
<Delete Files="$(ProjectDir)/wwwroot/css/app.css" />
<Delete Files="$(ProjectDir)/wwwroot/css/app.css.map" />
</Target>
2021-11-13 03:21:59 +00:00
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="5.0.11" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="5.0.11" PrivateAssets="all" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="5.0.11" />
<PackageReference Include="Microsoft.Extensions.Http" Version="5.0.0" />
<PackageReference Include="System.Net.Http.Json" Version="5.0.0" />
<PackageReference Include="Blazored.LocalStorage" Version="4.1.5" />
<PackageReference Include="Refit" Version="6.1.15" />
<PackageReference Include="Refit.HttpClientFactory" Version="6.1.15" />
2021-12-04 00:44:02 +00:00
<PackageReference Include="Fluxor" Version="4.2.1" />
<PackageReference Include="Fluxor.Blazor.Web" Version="4.2.1" />
<PackageReference Include="Fluxor.Blazor.Web.ReduxDevTools" Version="4.2.1" />
2021-11-13 03:21:59 +00:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Shared\Start.Shared.csproj" />
</ItemGroup>
<ItemGroup>
<ServiceWorker Include="wwwroot\service-worker.js" PublishedContent="wwwroot\service-worker.published.js" />
</ItemGroup>
<ItemGroup>
<None Remove="Blazored.LocalStorage" />
<None Remove="Refit" />
<None Remove="Refit.HttpClientFactory" />
2021-12-04 00:44:02 +00:00
<None Remove="Fluxor" />
<None Remove="Fluxor.Blazor.Web" />
<None Remove="Fluxor.Blazor.Web.ReduxDevTools" />
<None Remove="Store\" />
<None Remove="Store\Features\" />
<None Remove="Store\State\" />
<None Remove="Store\Features\CreateContainer\" />
<None Remove="Store\Features\DeleteContainer\" />
<None Remove="Store\Features\ContainersList\" />
<None Remove="Store\Features\CurrentContainer\" />
2021-12-05 23:50:48 +00:00
<None Remove="Store\Features\CreateGroup\" />
<None Remove="Store\Features\Sidebar\" />
2021-12-09 05:59:43 +00:00
<None Remove="Sass\" />
<None Remove="Sass\Spectre\" />
2021-12-11 21:56:35 +00:00
<None Remove="Store\Features\DeleteGroup\" />
2021-12-14 00:27:13 +00:00
<None Remove="Store\Features\CreateBookmark\" />
2021-12-16 18:46:22 +00:00
<None Remove="Store\Features\DeleteBookmark\" />
2021-12-17 06:06:41 +00:00
<None Remove="Components\Shared\" />
</ItemGroup>
<ItemGroup>
<Content Remove="wwwroot\css\Spectre\" />
</ItemGroup>
2021-12-04 00:44:02 +00:00
<ItemGroup>
<Folder Include="Store\" />
<Folder Include="Store\Features\" />
<Folder Include="Store\State\" />
<Folder Include="Store\Features\CreateContainer\" />
<Folder Include="Store\Features\DeleteContainer\" />
<Folder Include="Store\Features\ContainersList\" />
<Folder Include="Store\Features\CurrentContainer\" />
2021-12-05 23:50:48 +00:00
<Folder Include="Store\Features\CreateGroup\" />
<Folder Include="Store\Features\Sidebar\" />
2021-12-09 05:59:43 +00:00
<Folder Include="Sass\" />
<Folder Include="Sass\Spectre\" />
2021-12-11 21:56:35 +00:00
<Folder Include="Store\Features\DeleteGroup\" />
2021-12-14 00:27:13 +00:00
<Folder Include="Store\Features\CreateBookmark\" />
2021-12-16 18:46:22 +00:00
<Folder Include="Store\Features\DeleteBookmark\" />
2021-12-17 06:06:41 +00:00
<Folder Include="Components\Shared\" />
2021-12-04 00:44:02 +00:00
</ItemGroup>
2021-11-13 03:21:59 +00:00
</Project>