mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-06-15 16:33:21 +08:00
perf: ⚡ .net sdk 更新
This commit is contained in:
parent
f89d137d9a
commit
35efc11e56
@ -1,4 +1,4 @@
|
||||
FROM mcr.microsoft.com/dotnet/aspnet:9.0.4 AS base
|
||||
FROM mcr.microsoft.com/dotnet/aspnet:9.0.5 AS base
|
||||
WORKDIR /app
|
||||
EXPOSE 8080
|
||||
RUN apt update
|
||||
|
@ -6,7 +6,7 @@
|
||||
<PackageReference Include="NetAdmin.FreeSql.DbContext" Version="1.1.3" Label="refs"/>
|
||||
<PackageReference Include="NetAdmin.FreeSql.Provider.Sqlite" Version="1.1.3" Label="refs"/>
|
||||
<PackageReference Include="Gurion" Version="1.2.13" Label="refs"/>
|
||||
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="9.0.4"/>
|
||||
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="9.0.5"/>
|
||||
<PackageReference Include="Minio" Version="6.0.4"/>
|
||||
<PackageReference Include="NSExt" Version="2.3.5"/>
|
||||
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="2.1.6"/>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<ProjectReference Include="../NetAdmin.Host/NetAdmin.Host.csproj"/>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.4"/>
|
||||
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.5"/>
|
||||
<PackageReference Include="xunit" Version="2.9.3"/>
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.0">
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
|
@ -15,7 +15,7 @@
|
||||
"axios": "1.9.0",
|
||||
"crypto-js": "4.2.0",
|
||||
"echarts": "5.6.0",
|
||||
"element-plus": "2.9.9",
|
||||
"element-plus": "2.9.10",
|
||||
"json-bigint": "1.0.0",
|
||||
"markdown-it": "14.1.0",
|
||||
"markdown-it-emoji": "3.0.0",
|
||||
@ -31,11 +31,11 @@
|
||||
"vuex": "4.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vitejs/plugin-vue": "5.2.3",
|
||||
"@vitejs/plugin-vue": "5.2.4",
|
||||
"prettier": "3.5.3",
|
||||
"prettier-plugin-organize-attributes": "1.0.0",
|
||||
"sass": "1.87.0",
|
||||
"terser": "5.39.0",
|
||||
"sass": "1.88.0",
|
||||
"terser": "5.39.1",
|
||||
"vite": "6.3.5"
|
||||
},
|
||||
"browserslist": [
|
||||
|
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<el-table-column align="right">
|
||||
<el-table-column align="right" fixed="right">
|
||||
<template #default="{ row }">
|
||||
<el-button-group>
|
||||
<template v-for="(item, i) in buttons?.filter((x) => !x.condition || x.condition(row))" :key="i">
|
||||
|
@ -21,9 +21,8 @@ export default (error, vm) => {
|
||||
const errorName = errorMap[error.name] || '未知错误'
|
||||
|
||||
console.warn(`[error]: ${error}`)
|
||||
if (error.name === 'TypeError') {
|
||||
window.location.reload()
|
||||
}
|
||||
console.error(error)
|
||||
//throw error;
|
||||
|
||||
vm.$nextTick(() => {
|
||||
vm.$notify.error({
|
||||
|
Loading…
x
Reference in New Issue
Block a user