Skip to content

Commit d0756c9

Browse files
deep code
1 parent b39d0a8 commit d0756c9

36 files changed

+716
-55
lines changed

.vscode/tasks.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "dotnet run",
6+
"command": "dotnet",
7+
"type": "shell",
8+
"args": [
9+
"run",
10+
"--project",
11+
"DeepLearningProtocol/DeepLearningProtocol.csproj"
12+
],
13+
"isBackground": false,
14+
"group": {
15+
"kind": "build",
16+
"isDefault": true
17+
},
18+
"presentation": {
19+
"reveal": "always"
20+
}
21+
},
22+
{
23+
"label": "dotnet build",
24+
"command": "dotnet",
25+
"type": "shell",
26+
"args": ["build"],
27+
"group": "build"
28+
},
29+
{
30+
"label": "dotnet test",
31+
"command": "dotnet",
32+
"type": "shell",
33+
"args": ["test"],
34+
"group": "test"
35+
}
36+
]
37+
}

DeepLearningProtocol.Tests/DeepLearningProtocol.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<IsPackable>false</IsPackable>
77
<OutputType>Library</OutputType>

DeepLearningProtocol/DeepLearningProtocol.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net8.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>
74.6 KB
Binary file not shown.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"runtimeTarget": {
3+
"name": ".NETCoreApp,Version=v10.0",
4+
"signature": ""
5+
},
6+
"compilationOptions": {},
7+
"targets": {
8+
".NETCoreApp,Version=v10.0": {
9+
"DeepLearningProtocol/1.0.0": {
10+
"runtime": {
11+
"DeepLearningProtocol.dll": {}
12+
}
13+
}
14+
}
15+
},
16+
"libraries": {
17+
"DeepLearningProtocol/1.0.0": {
18+
"type": "project",
19+
"serviceable": false,
20+
"sha512": ""
21+
}
22+
}
23+
}
Binary file not shown.
11.4 KB
Binary file not shown.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"runtimeOptions": {
3+
"tfm": "net10.0",
4+
"framework": {
5+
"name": "Microsoft.NETCore.App",
6+
"version": "10.0.0"
7+
},
8+
"configProperties": {
9+
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
10+
}
11+
}
12+
}
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)