-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Many updates fixing test execution (#574)
* #573 (comment): fix license set-up * Try to get logs from operating system after an error * Log only failing OSes * Update logging for MacOS 13 * Centralized environment variables and steps * #518 (comment): setup heap params and verify if this change solves SIGFPE * Test execution of java with a simple program to verify activation * Try to compile and execute a native method to start a JVM * Adding more steps in test function * Avoid useless chaining * Fix variable initialization * Use procdump to get windows application crashes * #573 (comment): disabled CETCompat on .NET 9 applications * #573 (comment): test disabling at library level * #573 (comment): moved CETCompat in the Common.props file * #518 (comment): removed MacOS 13 * Update templates * Remove many warning * Try test activation using dotnet app host * #573 (comment): apply workaround and make executable CET compatible * Fix double registration under windows
- Loading branch information
1 parent
424871d
commit eaa1c4d
Showing
10 changed files
with
275 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 14 additions & 10 deletions
24
src/net/templates/templates/jcobridgeConsoleApp/jcobridgeConsoleApp.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,16 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFrameworks>net462;net8.0;net9.0</TargetFrameworks> | ||
</PropertyGroup> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'net462'"> | ||
<Reference Include="Microsoft.CSharp" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="MASES.JCOBridge" Version="2.5.19" IncludeAssets="All" PrivateAssets="None" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFrameworks>net462;net8.0;net9.0</TargetFrameworks> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(TargetFramework)' == 'net9.0'"> | ||
<!--see https://learn.microsoft.com/en-us/dotnet/core/compatibility/interop/9.0/cet-support--> | ||
<CETCompat>false</CETCompat> | ||
</PropertyGroup> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'net462'"> | ||
<Reference Include="Microsoft.CSharp" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="MASES.JCOBridge" Version="2.5.19" IncludeAssets="All" PrivateAssets="None" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,21 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFrameworks>net462;net8.0;net9.0</TargetFrameworks> | ||
</PropertyGroup> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'net462'"> | ||
<Reference Include="Microsoft.CSharp" /> | ||
</ItemGroup> | ||
<ItemGroup Condition="Exists('..\..\..\JNet\JNet.csproj')"> | ||
<!--Within GitHub repo: used for test purpose--> | ||
<ProjectReference Include="..\..\..\JNet\JNet.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup Condition="!Exists('..\..\..\JNet\JNet.csproj')"> | ||
<!--Outside GitHub repo--> | ||
<PackageReference Include="MASES.JNet" Version="2.5.10" cludeAssets="All" PrivateAssets="None" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFrameworks>net462;net8.0;net9.0</TargetFrameworks> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(TargetFramework)' == 'net9.0'"> | ||
<!--see https://learn.microsoft.com/en-us/dotnet/core/compatibility/interop/9.0/cet-support--> | ||
<CETCompat>false</CETCompat> | ||
</PropertyGroup> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'net462'"> | ||
<Reference Include="Microsoft.CSharp" /> | ||
</ItemGroup> | ||
<ItemGroup Condition="Exists('..\..\..\JNet\JNet.csproj')"> | ||
<!--Within GitHub repo: used for test purpose--> | ||
<ProjectReference Include="..\..\..\JNet\JNet.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup Condition="!Exists('..\..\..\JNet\JNet.csproj')"> | ||
<!--Outside GitHub repo--> | ||
<PackageReference Include="MASES.JNet" Version="2.5.10" cludeAssets="All" PrivateAssets="None" /> | ||
</ItemGroup> | ||
</Project> |
Oops, something went wrong.