Skip to content

Commit

Permalink
Another attempt at fna nuget
Browse files Browse the repository at this point in the history
  • Loading branch information
vchelaru committed Apr 4, 2024
1 parent 18a5e7b commit 52d18f7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
21 changes: 17 additions & 4 deletions Engines/FlatRedBallXNA/FlatRedBall.FNA/FlatRedBall.FNA.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,22 @@
<Version>1.0.0</Version>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\3rd Party Libraries\FNA\FNA.Core.csproj"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\3rd Party Libraries\FNA\FNA.Core.csproj">
<ReferenceOutputAssembly>true</ReferenceOutputAssembly>
<IncludeAssets>FNA.Core.dll</IncludeAssets>
</ProjectReference>
</ItemGroup>

<Import Project="..\FlatRedBall\FlatRedBallShared.projitems" Label="Shared" />
<Target DependsOnTargets="ResolveReferences" Name="CopyProjectReferencesToPackage">
<ItemGroup>
<BuildOutputInPackage Include="@(ReferenceCopyLocalPaths->WithMetadataValue('ReferenceSourceTarget', 'ProjectReference'))"/>
</ItemGroup>
</Target>

<PropertyGroup>
<TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);CopyProjectReferencesToPackage</TargetsForTfmSpecificBuildOutput>
</PropertyGroup>

<Import Project="..\FlatRedBall\FlatRedBallShared.projitems" Label="Shared" />
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ static async Task Main(string[] args)

private static void CreateChangeEngineVersion()
{
ProcessSteps.Add(new InjectFnaNugetAndVersion(Results));
//ProcessSteps.Add(new InjectFnaNugetAndVersion(Results));
ProcessSteps.Add(new UpdateAssemblyVersions(Results, UpdateType.Engine));

}
Expand Down

0 comments on commit 52d18f7

Please sign in to comment.