mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-04-24 07:02:51 +08:00
build: 📦 dotnet sdk 升级至 9.0.202
This commit is contained in:
parent
e0a4a40314
commit
20f09c8ea1
2
.github/workflows/nightly-build.yml
vendored
2
.github/workflows/nightly-build.yml
vendored
@ -12,7 +12,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [ 22.x ]
|
||||
node-version: [ 23.x ]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -12,7 +12,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [ 22.x ]
|
||||
node-version: [ 23.x ]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
|
@ -18,7 +18,7 @@
|
||||
<LangVersion>preview</LangVersion>
|
||||
<MinVerDefaultPreReleaseIdentifiers>beta</MinVerDefaultPreReleaseIdentifiers>
|
||||
<MinVerTagPrefix>v</MinVerTagPrefix>
|
||||
<NoWarn>CA1707;IDE0005;IDE0008;IDE0010;IDE0028;IDE0055;IDE0160;IDE0300;IDE0305;RCS1141;RCS1142;RCS1181;S101;S1121;S1135;S125;S2094;S3604;S4663;S6561;SYSLIB1045;SA1010</NoWarn>
|
||||
<NoWarn>CA1707;IDE0005;IDE0008;IDE0010;IDE0028;IDE0055;IDE0072;IDE0160;IDE0300;IDE0305;RCS1141;RCS1142;RCS1181;S101;S1121;S1135;S125;S2094;S3604;S4663;S6561;SA1010;SYSLIB1045</NoWarn>
|
||||
<Product>NetAdmin</Product>
|
||||
<RepositoryType>git</RepositoryType>
|
||||
<RepositoryUrl>https://github.com/nsnail/NetAdmin.git</RepositoryUrl>
|
||||
|
@ -12,6 +12,7 @@
|
||||
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantPatternParentheses/@EntryIndexedValue">DO_NOT_SHOW</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=SuggestBaseTypeForParameter/@EntryIndexedValue">DO_NOT_SHOW</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=SuggestBaseTypeForParameterInConstructor/@EntryIndexedValue">DO_NOT_SHOW</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=SwitchExpressionHandlesSomeKnownEnumValuesWithExceptionInDefault/@EntryIndexedValue">DO_NOT_SHOW</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=TooWideLocalVariableScope/@EntryIndexedValue">HINT</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=UnusedAutoPropertyAccessor_002EGlobal/@EntryIndexedValue">DO_NOT_SHOW</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=UnusedAutoPropertyAccessor_002ELocal/@EntryIndexedValue">DO_NOT_SHOW</s:String>
|
||||
@ -325,6 +326,7 @@
|
||||
</Patterns></s:String>
|
||||
|
||||
<!-- Environment-->
|
||||
<s:Boolean x:Key="/Default/Environment/Editor/UseCamelHumps/@EntryValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpKeepExistingMigration/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpPlaceEmbeddedOnSameLineMigration/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpUseContinuousIndentInsideBracesMigration/@EntryIndexedValue">True</s:Boolean>
|
||||
|
@ -51,27 +51,6 @@ public static class GlobalStatic
|
||||
, DataType.PostgreSQL => "RANDOM()"
|
||||
, DataType.Oracle => "DBMS_RANDOM.value"
|
||||
, DataType.Sqlite => "RANDOM()"
|
||||
, DataType.OdbcOracle => throw new NotImplementedException()
|
||||
, DataType.OdbcSqlServer => throw new NotImplementedException()
|
||||
, DataType.OdbcMySql => throw new NotImplementedException()
|
||||
, DataType.OdbcPostgreSQL => throw new NotImplementedException()
|
||||
, DataType.Odbc => throw new NotImplementedException()
|
||||
, DataType.OdbcDameng => throw new NotImplementedException()
|
||||
, DataType.MsAccess => throw new NotImplementedException()
|
||||
, DataType.Dameng => throw new NotImplementedException()
|
||||
, DataType.OdbcKingbaseES => throw new NotImplementedException()
|
||||
, DataType.ShenTong => throw new NotImplementedException()
|
||||
, DataType.KingbaseES => throw new NotImplementedException()
|
||||
, DataType.Firebird => throw new NotImplementedException()
|
||||
, DataType.Custom => throw new NotImplementedException()
|
||||
, DataType.ClickHouse => throw new NotImplementedException()
|
||||
, DataType.GBase => throw new NotImplementedException()
|
||||
, DataType.QuestDb => throw new NotImplementedException()
|
||||
, DataType.Xugu => throw new NotImplementedException()
|
||||
, DataType.CustomOracle => throw new NotImplementedException()
|
||||
, DataType.CustomSqlServer => throw new NotImplementedException()
|
||||
, DataType.CustomMySql => throw new NotImplementedException()
|
||||
, DataType.CustomPostgreSQL => throw new NotImplementedException()
|
||||
, _ => throw new NotImplementedException()
|
||||
};
|
||||
|
||||
|
@ -10,12 +10,12 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@element-plus/icons-vue": "2.3.1",
|
||||
"ace-builds": "1.39.0",
|
||||
"aieditor": "1.3.5",
|
||||
"axios": "1.8.1",
|
||||
"ace-builds": "1.39.1",
|
||||
"aieditor": "1.3.6",
|
||||
"axios": "1.8.4",
|
||||
"crypto-js": "4.2.0",
|
||||
"echarts": "5.6.0",
|
||||
"element-plus": "2.9.5",
|
||||
"element-plus": "2.9.7",
|
||||
"json-bigint": "1.0.0",
|
||||
"markdown-it": "14.1.0",
|
||||
"markdown-it-emoji": "3.0.0",
|
||||
@ -31,12 +31,12 @@
|
||||
"vuex": "4.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vitejs/plugin-vue": "5.2.1",
|
||||
"@vitejs/plugin-vue": "5.2.3",
|
||||
"prettier": "3.5.3",
|
||||
"prettier-plugin-organize-attributes": "1.0.0",
|
||||
"sass": "1.85.1",
|
||||
"sass": "1.86.0",
|
||||
"terser": "5.39.0",
|
||||
"vite": "6.2.1"
|
||||
"vite": "6.2.2"
|
||||
},
|
||||
"browserslist": [
|
||||
"> 1%",
|
||||
|
Loading…
x
Reference in New Issue
Block a user