Skip to content

Commit 4f82861

Browse files
committed
第一次提交
0 parents  commit 4f82861

File tree

7 files changed

+1045
-0
lines changed

7 files changed

+1045
-0
lines changed

.gitignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
.vs/
2+
*.suo
3+
*.user
4+
.ionide/
5+
6+
# Build results
7+
[Dd]ebug/
8+
[Dd]ebugPublic/
9+
10+
[Rr]elease/
11+
[Rr]eleases/
12+
13+
[Bb]in/
14+
[Oo]bj/
15+
[Oo]ut/
16+
[Ll]og/
17+
[Ll]ogs/
18+
19+
paket-files/
20+
nuget-package-caches/
21+
.paket/

Src/Helevn.OCV.DMM.sln

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.10.35027.167
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Helevn.OCV.DMM", "Helevn.OCV.DMM\Helevn.OCV.DMM.csproj", "{A3B87D1C-9DE4-42DB-BB8A-680BA94A698A}"
7+
EndProject
8+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{1755D5FA-8928-48EE-ABE6-7D92BE0D0A58}"
9+
ProjectSection(SolutionItems) = preProject
10+
global.json = global.json
11+
paket.dependencies = paket.dependencies
12+
EndProjectSection
13+
EndProject
14+
Global
15+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
16+
Debug|Any CPU = Debug|Any CPU
17+
Release|Any CPU = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
20+
{A3B87D1C-9DE4-42DB-BB8A-680BA94A698A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21+
{A3B87D1C-9DE4-42DB-BB8A-680BA94A698A}.Debug|Any CPU.Build.0 = Debug|Any CPU
22+
{A3B87D1C-9DE4-42DB-BB8A-680BA94A698A}.Release|Any CPU.ActiveCfg = Release|Any CPU
23+
{A3B87D1C-9DE4-42DB-BB8A-680BA94A698A}.Release|Any CPU.Build.0 = Release|Any CPU
24+
EndGlobalSection
25+
GlobalSection(SolutionProperties) = preSolution
26+
HideSolutionNode = FALSE
27+
EndGlobalSection
28+
GlobalSection(ExtensibilityGlobals) = postSolution
29+
SolutionGuid = {C7DE2E59-CA75-4576-A085-C4C852DDED4E}
30+
EndGlobalSection
31+
EndGlobal
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project Sdk="Microsoft.NET.Sdk">
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
</PropertyGroup>
8+
<Import Project="..\.paket\Paket.Restore.targets" />
9+
</Project>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Microsoft.Extensions.Hosting

Src/global.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"sdk": {
3+
"version": "8.0.102"
4+
}
5+
}

Src/paket.dependencies

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
source https://api.nuget.org/v3/index.json
2+
cache ./nuget-package-caches
3+
4+
storage: none
5+
strategy: min
6+
7+
nuget Microsoft.Extensions.Hosting >= 6.0
8+
nuget Microsoft.Extensions.Options >= 6.0
9+
nuget Microsoft.Extensions.Options.ConfigurationExtensions >= 6.0
10+
nuget Microsoft.AspNetCore.DataProtection >= 6.0
11+
nuget Microsoft.Extensions.Http >= 6.0
12+
nuget Microsoft.Win32.Registry 5.0.0
13+
nuget Microsoft.Xaml.Behaviors.Wpf 1.1.39
14+
nuget Microsoft.EntityFrameworkCore.Sqlite >= 6.0
15+
nuget MahApps.Metro 2.0.0
16+
nuget MediatR 9.0.0
17+
nuget MediatR.Extensions.Microsoft.DependencyInjection 9.0.0
18+
nuget Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson >= 6.0
19+
20+
nuget System.ComponentModel 4.3.0
21+
nuget System.ComponentModel.Annotations 5.0.0
22+
nuget System.Text.Encoding.CodePages 7.0.0
23+
nuget System.Text.Encodings.Web >= 6.0.0
24+
nuget System.Text.Json >= 8.0.0
25+
nuget System.Threading.Tasks.Extensions 4.5.4
26+
nuget System.ValueTuple 4.5.0
27+
nuget Swashbuckle.AspNetCore
28+
nuget Swashbuckle.AspNetCore.Newtonsoft
29+
30+
nuget IronPython 3.4.1
31+
32+
nuget HandyControl
33+
34+
nuget ReactiveProperty
35+
nuget ReactiveProperty.WPF

Src/paket.lock

Lines changed: 943 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)