attempt to fix libman restore
Some checks failed
build / deploy (push) Failing after 26s

This commit is contained in:
Nick Seguin 2024-02-25 18:12:54 -06:00
parent ea54628d8e
commit fea2012b88
Signed by: nseguin
GPG key ID: 68C99FA84079021D
2 changed files with 29 additions and 28 deletions

View file

@ -9,11 +9,15 @@
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App"/>
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" />
<PackageReference Include="Microsoft.Web.LibraryManager.Build"/>
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded"/>
<PackageReference Include="Microsoft.Web.LibraryManager.Build" PrivateAssets="All" ReferenceOutputAssembly="false"/>
<ProjectReference Include="..\NSeguin.Dev.Web.HeroIcons.SourceGenerator\NSeguin.Dev.Web.HeroIcons.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/>
<AdditionalFiles Include="lib/heroicons/**/*.svg" />
<EmbeddedResource Include="lib/heroicons/**/*.svg" />
<AdditionalFiles Include="lib/heroicons/**/*.svg"/>
<EmbeddedResource Include="lib/heroicons/**/*.svg"/>
<None Remove="libman.json" />
<AdditionalFiles Include="libman.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</AdditionalFiles>
</ItemGroup>
</Project>

View file

@ -7,47 +7,44 @@
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\NSeguin.Dev.Web.Common\NSeguin.Dev.Web.Common.csproj" />
<ProjectReference Include="..\NSeguin.Dev.Web.Client\NSeguin.Dev.Web.Client.csproj" />
<ProjectReference Include="..\NSeguin.Dev.Web.HeroIcons\NSeguin.Dev.Web.HeroIcons.csproj" />
<ProjectReference Include="..\NSeguin.Dev.Web.Common\NSeguin.Dev.Web.Common.csproj"/>
<ProjectReference Include="..\NSeguin.Dev.Web.Client\NSeguin.Dev.Web.Client.csproj"/>
<ProjectReference Include="..\NSeguin.Dev.Web.HeroIcons\NSeguin.Dev.Web.HeroIcons.csproj"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Extensions.AspNetCore.Configuration.Secrets" />
<PackageReference Include="Azure.Identity" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" />
<PackageReference Include="Microsoft.Extensions.Configuration.AzureAppConfiguration" />
<PackageReference Include="Microsoft.Identity.Web" />
<PackageReference Include="Microsoft.Identity.Web.UI" />
<PackageReference Include="Microsoft.Web.LibraryManager.Build" />
<PackageReference Include="Azure.Extensions.AspNetCore.Configuration.Secrets"/>
<PackageReference Include="Azure.Identity"/>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer"/>
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect"/>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server"/>
<PackageReference Include="Microsoft.Extensions.Configuration.AzureAppConfiguration"/>
<PackageReference Include="Microsoft.Identity.Web"/>
<PackageReference Include="Microsoft.Identity.Web.UI"/>
<PackageReference Include="Microsoft.Web.LibraryManager.Build"/>
</ItemGroup>
<ItemGroup>
<UpToDateCheckBuilt Include="wwwroot/css/site.css" Set="Css" />
<UpToDateCheckBuilt Include="wwwroot/css/site.css" Set="Css"/>
<TypeScriptCompile Include="tailwind.config.ts" Set="Css">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</TypeScriptCompile>
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="wwwroot/lib/heroicons/**/*.svg" />
<Content Remove="package.json" />
<AdditionalFiles Include="package.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</AdditionalFiles>
<None Remove="pnpm-lock.yaml" />
<AdditionalFiles Include="pnpm-lock.yaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</AdditionalFiles>
<Content Remove="package.json"/>
<AdditionalFiles Include="package.json" CopyToOutputDirectory="Always"/>
<None Remove="pnpm-lock.yaml"/>
<AdditionalFiles Include="pnpm-lock.yaml" CopyToOutputDirectory="Always"/>
<Content Remove="libman.json"/>
<AdditionalFiles Include="libman.json" CopyToOutputDirectory="Always"/>
</ItemGroup>
<Target Name="NodeInstall" BeforeTargets="TailwindBuild" Condition="'$(SkipNodeBuild)' != 'true'">
<Exec Command="pnpm install" />
<Exec Command="pnpm install"/>
</Target>
<Target Name="TailwindBuild" BeforeTargets="Build" Condition="'$(SkipNodeBuild)' != 'true'">
<Exec Command="pnpm run css:build" />
<Exec Command="pnpm run css:build"/>
</Target>
</Project>