File tree Expand file tree Collapse file tree 3 files changed +48
-2
lines changed
Expand file tree Collapse file tree 3 files changed +48
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public static class DebugManager
2929 {
3030 { "Raylib-cs" , "7.0.2" } ,
3131 { "ImGui.NET" , "1.91.6.1" } ,
32- { "SharpEngine.Core" , "2.4 .0" }
32+ { "SharpEngine.Core" , "2.5 .0" }
3333 } ;
3434
3535 /// <summary>
Original file line number Diff line number Diff line change 99 <Copyright >Copyright (c) LavaPower 2021-2023</Copyright >
1010 <PackageLicenseExpression >MIT</PackageLicenseExpression >
1111 <PackageProjectUrl >https://github.com/SharpEngine/SharpEngine.Core</PackageProjectUrl >
12- <PackageVersion >2.4 .0</PackageVersion >
12+ <PackageVersion >2.5 .0</PackageVersion >
1313 <AllowUnsafeBlocks >true</AllowUnsafeBlocks >
1414 <PackageReadmeFile >README.md</PackageReadmeFile >
1515 <EnablePackageValisation >true</EnablePackageValisation >
Original file line number Diff line number Diff line change 1+ # -------------------------------------------------------------------------------#
2+ # Qodana analysis is configured by qodana.yaml file #
3+ # https://www.jetbrains.com/help/qodana/qodana-yaml.html #
4+ # -------------------------------------------------------------------------------#
5+
6+ # ################################################################################
7+ # WARNING: Do not store sensitive information in this file, #
8+ # as its contents will be included in the Qodana report. #
9+ # ################################################################################
10+ version : " 1.0"
11+
12+ # Specify IDE code to run analysis without container (Applied in CI/CD pipeline)
13+ ide : QDNET
14+
15+ # Specify inspection profile for code analysis
16+ profile :
17+ name : qodana.starter
18+
19+ # Enable inspections
20+ # include:
21+ # - name: <SomeEnabledInspectionId>
22+
23+ # Disable inspections
24+ # exclude:
25+ # - name: <SomeDisabledInspectionId>
26+ # paths:
27+ # - <path/where/not/run/inspection>
28+
29+ # Execute shell command before Qodana execution (Applied in CI/CD pipeline)
30+ # bootstrap: sh ./prepare-qodana.sh
31+
32+ # Install IDE plugins before Qodana execution (Applied in CI/CD pipeline)
33+ # plugins:
34+ # - id: <plugin.id> #(plugin id can be found at https://plugins.jetbrains.com)
35+
36+ # Quality gate. Will fail the CI/CD pipeline if any condition is not met
37+ # severityThresholds - configures maximum thresholds for different problem severities
38+ # testCoverageThresholds - configures minimum code coverage on a whole project and newly added code
39+ # Code Coverage is available in Ultimate and Ultimate Plus plans
40+ # failureConditions:
41+ # severityThresholds:
42+ # any: 15
43+ # critical: 5
44+ # testCoverageThresholds:
45+ # fresh: 70
46+ # total: 50
You can’t perform that action at this time.
0 commit comments