Skip to content

Commit a062f08

Browse files
committed
Upgraded the CppAst nuget.
1 parent 00f3939 commit a062f08

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

Generate-Bindings.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<#
22
.SYNOPSIS
3-
Evergine bindings generator script, (c) 2022 Evergine Team
3+
Evergine bindings generator script, (c) 2025 Evergine Team
44
.DESCRIPTION
55
This script generates RenderDoc bindings used in Evergine
66
It's meant to have the same behavior when executed locally as when it's executed in a CI pipeline.

Generate-NuGets.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<#
22
.SYNOPSIS
3-
Evergine NuGet Packages generator script, (c) 2022 Evergine Team
3+
Evergine NuGet Packages generator script, (c) 2025 Evergine Team
44
.DESCRIPTION
5-
This script generates NuGet packages for the Mixed Reality Toolkit for Evergine
5+
This script generates NuGet packages for the RenderDoc for Evergine
66
It's meant to have the same behavior when executed locally as when it's executed in a CI pipeline.
77
.EXAMPLE
88
<script> -revision 1

RenderDocGen/RenderDocGen/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ static void Main(string[] args)
3131
}
3232
else
3333
{
34-
string outputPath = "..\\..\\..\\..\\Evergine.Bindings.RenderDoc\\Generated";
34+
string outputPath = "..\\..\\..\\..\\..\\Evergine.Bindings.RenderDoc\\Generated";
3535
CsCodeGenerator.Instance.Generate(compilation, outputPath);
3636
}
3737
}

RenderDocGen/RenderDocGen/RenderDocGen.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net8.0</TargetFramework>
6+
<!-- Workaround for issue https://github.com/microsoft/ClangSharp/issues/129 -->
7+
<RuntimeIdentifier Condition="'$(RuntimeIdentifier)' == '' AND '$(PackAsTool)' != 'true'">$(NETCoreSdkRuntimeIdentifier)</RuntimeIdentifier>
68
</PropertyGroup>
79

810
<ItemGroup>
@@ -16,7 +18,7 @@
1618
</ItemGroup>
1719

1820
<ItemGroup>
19-
<PackageReference Include="CppAst" Version="0.7.3" />
21+
<PackageReference Include="CppAst" Version="0.21.1" />
2022
</ItemGroup>
2123

2224
</Project>

0 commit comments

Comments
 (0)