fix: missing type

This commit is contained in:
h z
2025-02-18 16:05:37 +00:00
parent 2d0b25f65c
commit b21023ba24
3 changed files with 7 additions and 8 deletions

View File

@@ -31,7 +31,6 @@
<None Include="Package/build/$(AssemblyName).props" Pack="true" PackagePath="build" />
<None Include="Package/embedded/**/*.*" Pack="true" PackagePath="build/embedded" />
<None Include="publish" />
<None Include="build" />
<Compile Remove="Package/**/*.*"/>
</ItemGroup>
@@ -50,13 +49,14 @@
<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>
</Project>