Skip to content

Commit

Permalink
Upgraded the CppAst nuget.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcant0n committed Feb 14, 2025
1 parent 00f3939 commit a062f08
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Generate-Bindings.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<#
.SYNOPSIS
Evergine bindings generator script, (c) 2022 Evergine Team
Evergine bindings generator script, (c) 2025 Evergine Team
.DESCRIPTION
This script generates RenderDoc bindings used in Evergine
It's meant to have the same behavior when executed locally as when it's executed in a CI pipeline.
Expand Down
4 changes: 2 additions & 2 deletions Generate-NuGets.ps1
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<#
.SYNOPSIS
Evergine NuGet Packages generator script, (c) 2022 Evergine Team
Evergine NuGet Packages generator script, (c) 2025 Evergine Team
.DESCRIPTION
This script generates NuGet packages for the Mixed Reality Toolkit for Evergine
This script generates NuGet packages for the RenderDoc for Evergine
It's meant to have the same behavior when executed locally as when it's executed in a CI pipeline.
.EXAMPLE
<script> -revision 1
Expand Down
2 changes: 1 addition & 1 deletion RenderDocGen/RenderDocGen/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ static void Main(string[] args)
}
else
{
string outputPath = "..\\..\\..\\..\\Evergine.Bindings.RenderDoc\\Generated";
string outputPath = "..\\..\\..\\..\\..\\Evergine.Bindings.RenderDoc\\Generated";
CsCodeGenerator.Instance.Generate(compilation, outputPath);
}
}
Expand Down
4 changes: 3 additions & 1 deletion RenderDocGen/RenderDocGen/RenderDocGen.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<!-- Workaround for issue https://github.com/microsoft/ClangSharp/issues/129 -->
<RuntimeIdentifier Condition="'$(RuntimeIdentifier)' == '' AND '$(PackAsTool)' != 'true'">$(NETCoreSdkRuntimeIdentifier)</RuntimeIdentifier>
</PropertyGroup>

<ItemGroup>
Expand All @@ -16,7 +18,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="CppAst" Version="0.7.3" />
<PackageReference Include="CppAst" Version="0.21.1" />
</ItemGroup>

</Project>

0 comments on commit a062f08

Please # to comment.