2021-11-13 03:21:59 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-04-28 15:57:58 +00:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2021-11-13 03:21:59 +00:00
|
|
|
<ServiceWorkerAssetsManifest>service-worker-assets.js</ServiceWorkerAssetsManifest>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<WarningsAsErrors>Nullable</WarningsAsErrors>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Start' ">
|
|
|
|
<ExternalConsole>true</ExternalConsole>
|
|
|
|
</PropertyGroup>
|
2022-04-20 23:41:57 +00:00
|
|
|
|
|
|
|
<Target Name="CompileSass" BeforeTargets="PreBuildEvent" Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
<Exec Command="sass $(ProjectDir)/Sass/Spectre/spectre.scss $(ProjectDir)/wwwroot/css/spectre/spectre.css" />
|
|
|
|
<Exec Command="sass $(ProjectDir)/Sass/Spectre/spectre-exp.scss $(ProjectDir)/wwwroot/css/spectre/spectre-exp.css" />
|
|
|
|
<Exec Command="sass $(ProjectDir)/Sass/Spectre/spectre-icons.scss $(ProjectDir)/wwwroot/css/spectre/spectre-icons.css" />
|
|
|
|
<Exec Command="sass $(ProjectDir)/Sass/app.scss $(ProjectDir)/wwwroot/css/app.css" />
|
|
|
|
<Exec Command="sass $(ProjectDir)/Sass/dark-mode.scss $(ProjectDir)/wwwroot/css/dark-mode.css" />
|
|
|
|
</Target>
|
|
|
|
<Target Name="CompileMinSass" BeforeTargets="PreBuildEvent" Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
<Exec Command="sass --style=compressed $(ProjectDir)/Sass/Spectre/spectre.scss $(ProjectDir)/wwwroot/css/spectre/spectre.css" />
|
|
|
|
<Exec Command="sass --style=compressed $(ProjectDir)/Sass/Spectre/spectre-exp.scss $(ProjectDir)/wwwroot/css/spectre/spectre-exp.css" />
|
|
|
|
<Exec Command="sass --style=compressed $(ProjectDir)/Sass/Spectre/spectre-icons.scss $(ProjectDir)/wwwroot/css/spectre/spectre-icons.css" />
|
|
|
|
<Exec Command="sass --style=compressed $(ProjectDir)/Sass/app.scss $(ProjectDir)/wwwroot/css/app.css" />
|
|
|
|
<Exec Command="sass --style=compressed $(ProjectDir)/Sass/dark-mode.scss $(ProjectDir)/wwwroot/css/dark-mode.css" />
|
|
|
|
</Target>
|
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" />
|
2022-04-20 23:41:57 +00:00
|
|
|
|
|
|
|
<Delete Files="$(ProjectDir)/wwwroot/css/dark-mode.css" />
|
|
|
|
<Delete Files="$(ProjectDir)/wwwroot/css/dark-mode.css.map" />
|
2021-12-09 05:59:43 +00:00
|
|
|
</Target>
|
|
|
|
|
2021-11-13 03:21:59 +00:00
|
|
|
<ItemGroup>
|
2022-04-28 15:57:58 +00:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.4" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.4" PrivateAssets="all" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="6.0.4" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Http" Version="6.0.0" />
|
|
|
|
<PackageReference Include="System.Net.Http.Json" Version="6.0.0" />
|
|
|
|
<PackageReference Include="Blazored.LocalStorage" Version="4.2.0" />
|
|
|
|
<PackageReference Include="Refit" Version="6.3.2" />
|
|
|
|
<PackageReference Include="Refit.HttpClientFactory" Version="6.3.2" />
|
2022-05-03 20:48:42 +00:00
|
|
|
<PackageReference Include="Fluxor" Version="5.3.0" />
|
|
|
|
<PackageReference Include="Fluxor.Blazor.Web" Version="5.3.0" />
|
|
|
|
<PackageReference Include="Fluxor.Blazor.Web.ReduxDevTools" Version="5.3.0" />
|
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>
|
|
|
|
|
2021-11-21 06:47:10 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<None Remove="Blazored.LocalStorage" />
|
2021-11-29 06:32:21 +00:00
|
|
|
<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\" />
|
2021-12-08 01:12:20 +00:00
|
|
|
<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\" />
|
2021-11-21 06:47:10 +00:00
|
|
|
</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\" />
|
2021-12-08 01:12:20 +00:00
|
|
|
<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>
|