add: dissolve scene / nuget feed source
This commit is contained in:
@@ -8,12 +8,13 @@
|
||||
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
|
||||
<PackageId>Polonium</PackageId>
|
||||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||||
<Version>0.1.0</Version>
|
||||
<Version>0.1.1-x</Version>
|
||||
<Authors>Hangman</Authors>
|
||||
<DisableImplicitRestore>true</DisableImplicitRestore>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="GodotSharp" Version="4.4.0-beta.3" />
|
||||
<PackageReference Include="Polonium.Tasks" Version="0.1.0" />
|
||||
<PackageReference Include="Polonium.Tasks" Version="0.1.1-x" />
|
||||
</ItemGroup>
|
||||
<Target Name="GenerateProxyNodes" BeforeTargets="BeforeBuild">
|
||||
<GenerateProxyNodesTask
|
||||
@@ -24,6 +25,7 @@
|
||||
/>
|
||||
</Target>
|
||||
<ItemGroup>
|
||||
<None Include="NuGet.config" />
|
||||
<None
|
||||
Include="Package\build\$(AssemblyName).targets"
|
||||
Pack="true"
|
||||
@@ -39,14 +41,34 @@
|
||||
Pack="true"
|
||||
PackagePath="build\polonium_templates"
|
||||
/>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="publish" />
|
||||
<None Include="summerizer.py" />
|
||||
<Compile Remove="polonium_templates\**\*.*"/>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="polonium_templates" />
|
||||
<Folder Include="polonium_templates" />
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="CleanPreviousPackages" BeforeTargets="Build">
|
||||
<Message Text="Cleaning Previous Packages -------------------------" Importance="high"/>
|
||||
<Message Text="Cleaning --------------------------------------------" Importance="high"/>
|
||||
<ItemGroup>
|
||||
<ExistingPackages Include="$(OutputPath)*.nupkg"/>
|
||||
</ItemGroup>
|
||||
<Delete Files="@(ExistingPackages)" ContinueOnError="true"/>
|
||||
</Target>
|
||||
|
||||
<Target Name="CopyPackageToLocalFeed" AfterTargets="Pack">
|
||||
<Message Text="Executing Copy Task ----------------------" Importance="high"/>
|
||||
<Message Text="OutputPath: $(OutputPath)" Importance="high" />
|
||||
<ItemGroup>
|
||||
<NuGetPackages Include="$(OutputPath)*.nupkg" />
|
||||
</ItemGroup>
|
||||
<Message Text="Printing pkgs--------------------" Importance="high"/>
|
||||
<Message Text="Pkgs: @(NuGetPackages)" Importance="high"/>
|
||||
<Copy SourceFiles="@(NuGetPackages)" DestinationFolder="/NuGetFeed"/>
|
||||
</Target>
|
||||
<Target Name="RestoreNoCache" BeforeTargets="Restore">
|
||||
<Message Text="Restoring packages with no chache" Importance="high"/>
|
||||
<Exec Command="dotnet restore --no-cache"/>
|
||||
</Target>
|
||||
|
||||
</Project>
|
||||
|
||||
Reference in New Issue
Block a user