Skip to content

Commit 0417ab2

Browse files
committed
feat(version): 2.5.0
1 parent 110fbd9 commit 0417ab2

File tree

3 files changed

+48
-2
lines changed

3 files changed

+48
-2
lines changed

SharpEngine.Core/Manager/DebugManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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>

SharpEngine.Core/SharpEngine.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
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>

qodana.yaml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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

0 commit comments

Comments
 (0)