improve: clean up

This commit is contained in:
h z
2025-02-20 10:42:46 +00:00
parent d720b03480
commit ee4e489219
9 changed files with 18 additions and 56 deletions

View File

@@ -36,7 +36,7 @@
<None Include="Package/build/**/*" Pack="true" PackagePath="build" />
<None Include="Package/embedded/**/*.*" Pack="true" PackagePath="build/embedded" />
<None Include="publish" />
<Compile Remove="Package/**/*.*"/>
<Compile Remove="Package/**/*.*" />
</ItemGroup>
<ItemGroup>
@@ -58,13 +58,13 @@
<ItemGroup>
<NuGetPackages Include="$(OutputPath)*.nupkg" />
</ItemGroup>
<Message Text="Printing pkgs--------------------" Importance="high"/>
<Message Text="Pkgs: @(NuGetPackages)" Importance="high"/>
<Copy SourceFiles="@(NuGetPackages)" DestinationFolder="/NuGetFeed"/>
<Message Text="Printing pkgs--------------------" Importance="high" />
<Message Text="Pkgs: @(NuGetPackages)" Importance="high" />
<Copy SourceFiles="@(NuGetPackages)" DestinationFolder="/NuGetFeed" />
</Target>
<Target Name="RestoreNoCache" BeforeTargets="Build">
<Message Text="Restoring packages with no chache" Importance="high"/>
<Exec Command="dotnet restore --no-cache"/>
<Message Text="Restoring packages with no chache" Importance="high" />
<Exec Command="dotnet restore --no-cache" />
</Target>