diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..667ee92 --- /dev/null +++ b/.gitignore @@ -0,0 +1,328 @@ +# Build results +**/bin/ +**/obj/ +**/Debug/ +**/Release/ +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Ll]og/ +[Ll]ogs/ + +# Visual Studio cache/options directory +.vs/ +.vscode/ + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates + +# Mono auto generated files +mono_crash.* + +# Build results of an ATL project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + +# Files built by Visual Studio +*_i.c +*_p.c +*_h.h +*.ilk +*.meta +*.obj +*.iobj +*.pch +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*_wpftmp.csproj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# NuGet Packages +*.nupkg +*.snupkg +**/packages/* +!**/packages/build/ +*.nuget.props +*.nuget.targets + +# JetBrains Rider +.idea/ +*.sln.iml + +# macOS +.DS_Store + +# Windows +Thumbs.db +ehthumbs.db +Desktop.ini + +# Test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# Files built by Visual Studio +*_i.c +*_p.c +*_h.h +*.ilk +*.meta +*.obj +*.iobj +*.pch +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*_wpftmp.csproj +*.log +*.tlog +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# ReSharper +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# NuGet Symbol Packages +*.snupkg + +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt +*.appx +*.appxbundle +*.appxupload + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!?*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# Including strong name files can present a security risk +# (https://github.com/github/gitignore/pull/2483#issue-259490424) +#*.snk + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm +ServiceFabricBackup/ +*.rptproj.bak + +# SQL Server files +*.mdf +*.ldf +*.ndf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings +*.rptproj.rsuser +*- [Bb]ackup.rdl +*- [Bb]ackup ([0-9]).rdl +*- [Bb]ackup ([0-9][0-9]).rdl + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat +node_modules/ + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) +*.vbw + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe +paket-files/ + +# FAKE - F# Make +.fake/ + +# CodeRush personal settings +.cr/personal + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +# tools/** +# !tools/packages.config + +# Tabs Studio +*.tss + +# Telerik's JustMock configuration file +*.jmconfig + +# BizTalk build output +*.btp.cs +*.btm.cs +*.odx.cs +*.xsd.cs + +# OpenCover UI analysis results +OpenCover/ + +# Azure Stream Analytics local run output +ASALocalRun/ + +# MSBuild Binary and Structured Log +*.binlog + +# NVidia Nsight GPU debugger configuration file +*.nvuser + +# MFractors (Xamarin productivity tool) working folder +.mfractor/ + +# Local History for Visual Studio +.localhistory/ + +# BeatPulse healthcheck temp database +healthchecksdb + +# Backup folder for Package Reference Convert tool in Visual Studio 2017 +MigrationBackup/ + +# Ionide (cross platform F# VS Code tools) working folder +.ionide/ + +# Fody - auto-generated XML schema +FodyWeavers.xsd + +# VS Code files for those working on multiple tools +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace + +# Local History for Visual Studio Code +.history/ + +# Windows Installer files from build outputs +*.cab +*.msi +*.msix +*.msm +*.msp + +# JetBrains Rider +*.sln.iml +.idea/ diff --git a/AssetManager.API/obj/Debug/net8.0/AssetManager.API.assets.cache b/AssetManager.API/obj/Debug/net8.0/AssetManager.API.assets.cache index 053d0fe..502369a 100644 Binary files a/AssetManager.API/obj/Debug/net8.0/AssetManager.API.assets.cache and b/AssetManager.API/obj/Debug/net8.0/AssetManager.API.assets.cache differ diff --git a/AssetManager.Data/obj/Debug/net8.0/AssetManager.Data.AssemblyInfo.cs b/AssetManager.Data/obj/Debug/net8.0/AssetManager.Data.AssemblyInfo.cs index 1c72aa9..93c6bc6 100644 --- a/AssetManager.Data/obj/Debug/net8.0/AssetManager.Data.AssemblyInfo.cs +++ b/AssetManager.Data/obj/Debug/net8.0/AssetManager.Data.AssemblyInfo.cs @@ -13,10 +13,10 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("AssetManager.Data")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+cd5c3aedbe6e6dc5f7a6afd8cc06567780d3c2bb")] [assembly: System.Reflection.AssemblyProductAttribute("AssetManager.Data")] [assembly: System.Reflection.AssemblyTitleAttribute("AssetManager.Data")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -// Generated by the MSBuild WriteCodeFragment class. +// 由 MSBuild WriteCodeFragment 类生成。 diff --git a/AssetManager.Data/obj/Debug/net8.0/AssetManager.Data.AssemblyInfoInputs.cache b/AssetManager.Data/obj/Debug/net8.0/AssetManager.Data.AssemblyInfoInputs.cache index d188dfe..8316f66 100644 --- a/AssetManager.Data/obj/Debug/net8.0/AssetManager.Data.AssemblyInfoInputs.cache +++ b/AssetManager.Data/obj/Debug/net8.0/AssetManager.Data.AssemblyInfoInputs.cache @@ -1 +1 @@ -e830d3e99e1877069986f6502826dcbe8b78a12f50c05a9b552ddf3251a6f63e +6be071f8f8db4fc9107c828ce85dd2fc96cfb9e02f6734b95a757cfc35e82466 diff --git a/AssetManager.Data/obj/Debug/net8.0/AssetManager.Data.GeneratedMSBuildEditorConfig.editorconfig b/AssetManager.Data/obj/Debug/net8.0/AssetManager.Data.GeneratedMSBuildEditorConfig.editorconfig index c016f4b..157d627 100644 --- a/AssetManager.Data/obj/Debug/net8.0/AssetManager.Data.GeneratedMSBuildEditorConfig.editorconfig +++ b/AssetManager.Data/obj/Debug/net8.0/AssetManager.Data.GeneratedMSBuildEditorConfig.editorconfig @@ -8,6 +8,8 @@ build_property.PlatformNeutralAssembly = build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = AssetManager.Data -build_property.ProjectDir = /Users/fanfpy/Projects/AssetManager/AssetManager.Data/ +build_property.ProjectDir = c:\Users\admin\source\repos\AssetManager.API\AssetManager.Data\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 8.0 +build_property.EnableCodeStyleSeverity = diff --git a/AssetManager.Data/obj/Debug/net8.0/AssetManager.Data.assets.cache b/AssetManager.Data/obj/Debug/net8.0/AssetManager.Data.assets.cache index f84b273..316679b 100644 Binary files a/AssetManager.Data/obj/Debug/net8.0/AssetManager.Data.assets.cache and b/AssetManager.Data/obj/Debug/net8.0/AssetManager.Data.assets.cache differ diff --git a/AssetManager.Data/obj/Debug/net8.0/AssetManager.Data.csproj.AssemblyReference.cache b/AssetManager.Data/obj/Debug/net8.0/AssetManager.Data.csproj.AssemblyReference.cache index d1787b4..20b9799 100644 Binary files a/AssetManager.Data/obj/Debug/net8.0/AssetManager.Data.csproj.AssemblyReference.cache and b/AssetManager.Data/obj/Debug/net8.0/AssetManager.Data.csproj.AssemblyReference.cache differ diff --git a/AssetManager.Infrastructure/obj/Debug/net8.0/AssetManager.Infrastructure.AssemblyInfo.cs b/AssetManager.Infrastructure/obj/Debug/net8.0/AssetManager.Infrastructure.AssemblyInfo.cs index 6d9821b..b5bbdfa 100644 --- a/AssetManager.Infrastructure/obj/Debug/net8.0/AssetManager.Infrastructure.AssemblyInfo.cs +++ b/AssetManager.Infrastructure/obj/Debug/net8.0/AssetManager.Infrastructure.AssemblyInfo.cs @@ -13,10 +13,10 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("AssetManager.Infrastructure")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+cd5c3aedbe6e6dc5f7a6afd8cc06567780d3c2bb")] [assembly: System.Reflection.AssemblyProductAttribute("AssetManager.Infrastructure")] [assembly: System.Reflection.AssemblyTitleAttribute("AssetManager.Infrastructure")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -// Generated by the MSBuild WriteCodeFragment class. +// 由 MSBuild WriteCodeFragment 类生成。 diff --git a/AssetManager.Infrastructure/obj/Debug/net8.0/AssetManager.Infrastructure.AssemblyInfoInputs.cache b/AssetManager.Infrastructure/obj/Debug/net8.0/AssetManager.Infrastructure.AssemblyInfoInputs.cache index e541024..9ea0eea 100644 --- a/AssetManager.Infrastructure/obj/Debug/net8.0/AssetManager.Infrastructure.AssemblyInfoInputs.cache +++ b/AssetManager.Infrastructure/obj/Debug/net8.0/AssetManager.Infrastructure.AssemblyInfoInputs.cache @@ -1 +1 @@ -73016d12645093339e839558965226568537f99f52e6016971b0434832faad91 +901e76112f4173f30f56b4d83d80f772cd2453ee779a25f4ffd5cc9d42ec5355 diff --git a/AssetManager.Infrastructure/obj/Debug/net8.0/AssetManager.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig b/AssetManager.Infrastructure/obj/Debug/net8.0/AssetManager.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig index 07d3fc0..7a27872 100644 --- a/AssetManager.Infrastructure/obj/Debug/net8.0/AssetManager.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig +++ b/AssetManager.Infrastructure/obj/Debug/net8.0/AssetManager.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig @@ -8,6 +8,8 @@ build_property.PlatformNeutralAssembly = build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = AssetManager.Infrastructure -build_property.ProjectDir = /Users/fanfpy/Projects/AssetManager/AssetManager.Infrastructure/ +build_property.ProjectDir = c:\Users\admin\source\repos\AssetManager.API\AssetManager.Infrastructure\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 8.0 +build_property.EnableCodeStyleSeverity = diff --git a/AssetManager.Infrastructure/obj/Debug/net8.0/AssetManager.Infrastructure.assets.cache b/AssetManager.Infrastructure/obj/Debug/net8.0/AssetManager.Infrastructure.assets.cache index 15bb96e..17ae5ed 100644 Binary files a/AssetManager.Infrastructure/obj/Debug/net8.0/AssetManager.Infrastructure.assets.cache and b/AssetManager.Infrastructure/obj/Debug/net8.0/AssetManager.Infrastructure.assets.cache differ diff --git a/AssetManager.Infrastructure/obj/Debug/net8.0/AssetManager.Infrastructure.csproj.AssemblyReference.cache b/AssetManager.Infrastructure/obj/Debug/net8.0/AssetManager.Infrastructure.csproj.AssemblyReference.cache index d1787b4..20b9799 100644 Binary files a/AssetManager.Infrastructure/obj/Debug/net8.0/AssetManager.Infrastructure.csproj.AssemblyReference.cache and b/AssetManager.Infrastructure/obj/Debug/net8.0/AssetManager.Infrastructure.csproj.AssemblyReference.cache differ diff --git a/AssetManager.Models/obj/Debug/net8.0/AssetManager.Models.AssemblyInfo.cs b/AssetManager.Models/obj/Debug/net8.0/AssetManager.Models.AssemblyInfo.cs index 9cea1d0..168bc65 100644 --- a/AssetManager.Models/obj/Debug/net8.0/AssetManager.Models.AssemblyInfo.cs +++ b/AssetManager.Models/obj/Debug/net8.0/AssetManager.Models.AssemblyInfo.cs @@ -13,10 +13,10 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("AssetManager.Models")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+cd5c3aedbe6e6dc5f7a6afd8cc06567780d3c2bb")] [assembly: System.Reflection.AssemblyProductAttribute("AssetManager.Models")] [assembly: System.Reflection.AssemblyTitleAttribute("AssetManager.Models")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -// Generated by the MSBuild WriteCodeFragment class. +// 由 MSBuild WriteCodeFragment 类生成。 diff --git a/AssetManager.Models/obj/Debug/net8.0/AssetManager.Models.AssemblyInfoInputs.cache b/AssetManager.Models/obj/Debug/net8.0/AssetManager.Models.AssemblyInfoInputs.cache index c88a7de..c0f342e 100644 --- a/AssetManager.Models/obj/Debug/net8.0/AssetManager.Models.AssemblyInfoInputs.cache +++ b/AssetManager.Models/obj/Debug/net8.0/AssetManager.Models.AssemblyInfoInputs.cache @@ -1 +1 @@ -38edc205576a9b298d1ea2daadc34a2bad8856a9e78ffe8a9f8d15801ba3270e +e0fd330b7dc781f65369d2f5e263db4a0e28b727e644362e9a136fa0dcc7a850 diff --git a/AssetManager.Models/obj/Debug/net8.0/AssetManager.Models.GeneratedMSBuildEditorConfig.editorconfig b/AssetManager.Models/obj/Debug/net8.0/AssetManager.Models.GeneratedMSBuildEditorConfig.editorconfig index c02ba06..81502e7 100644 --- a/AssetManager.Models/obj/Debug/net8.0/AssetManager.Models.GeneratedMSBuildEditorConfig.editorconfig +++ b/AssetManager.Models/obj/Debug/net8.0/AssetManager.Models.GeneratedMSBuildEditorConfig.editorconfig @@ -8,6 +8,8 @@ build_property.PlatformNeutralAssembly = build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = AssetManager.Models -build_property.ProjectDir = /Users/fanfpy/Projects/AssetManager/AssetManager.Models/ +build_property.ProjectDir = c:\Users\admin\source\repos\AssetManager.API\AssetManager.Models\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 8.0 +build_property.EnableCodeStyleSeverity = diff --git a/AssetManager.Models/obj/Debug/net8.0/AssetManager.Models.assets.cache b/AssetManager.Models/obj/Debug/net8.0/AssetManager.Models.assets.cache index c5f88c3..214a1ad 100644 Binary files a/AssetManager.Models/obj/Debug/net8.0/AssetManager.Models.assets.cache and b/AssetManager.Models/obj/Debug/net8.0/AssetManager.Models.assets.cache differ diff --git a/AssetManager.Services/obj/Debug/net8.0/AssetManager.Services.assets.cache b/AssetManager.Services/obj/Debug/net8.0/AssetManager.Services.assets.cache index ae98cdc..7bbda1d 100644 Binary files a/AssetManager.Services/obj/Debug/net8.0/AssetManager.Services.assets.cache and b/AssetManager.Services/obj/Debug/net8.0/AssetManager.Services.assets.cache differ