返回提交历史
Added
XFEExtension.NetCore.AutoImplement.sln
+24
-0
Added
XFEExtension.NetCore.AutoImplement/Class1.cs
+7
-0
Added
XFEExtension.NetCore.AutoImplement/XFEExtension.NetCore.AutoImplement.csproj
+9
-0
XFEstudio/XFEExtension.NetCore.AutoImplement
添加项目文件。
d111b1e
代码差异
3 个文件
+40
-0
@@ -0,0 +1,24 @@
1
Microsoft Visual Studio Solution File, Format Version 12.00
2
# Visual Studio Version 17
3
VisualStudioVersion = 17.11.34929.205
4
MinimumVisualStudioVersion = 10.0.40219.1
5
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XFEExtension.NetCore.AutoImplement", "XFEExtension.NetCore.AutoImplement\XFEExtension.NetCore.AutoImplement.csproj", "{E74B6938-9516-4211-88EB-5C68EB76FD62}"
6
EndProject
7
Global
8
GlobalSection(ExtensibilityGlobals) = postSolution
9
SolutionGuid = {3C237470-3400-4B76-862D-63B1608FE3D8}
10
EndGlobalSection
11
GlobalSection(ProjectConfigurationPlatforms) = postSolution
12
{E74B6938-9516-4211-88EB-5C68EB76FD62}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13
{E74B6938-9516-4211-88EB-5C68EB76FD62}.Debug|Any CPU.Build.0 = Debug|Any CPU
14
{E74B6938-9516-4211-88EB-5C68EB76FD62}.Release|Any CPU.ActiveCfg = Release|Any CPU
15
{E74B6938-9516-4211-88EB-5C68EB76FD62}.Release|Any CPU.Build.0 = Release|Any CPU
16
EndGlobalSection
17
GlobalSection(SolutionConfigurationPlatforms) = preSolution
18
Debug|Any CPU = Debug|Any CPU
19
Release|Any CPU = Release|Any CPU
20
EndGlobalSection
21
GlobalSection(SolutionProperties) = preSolution
22
HideSolutionNode = FALSE
23
EndGlobalSection
24
EndGlobal
@@ -0,0 +1,7 @@
1
namespace XFEExtension.NetCore.AutoImplement
2
{
3
public class Class1
4
{
5
6
}
7
}
@@ -0,0 +1,9 @@
1
<Project Sdk="Microsoft.NET.Sdk">
2
3
<PropertyGroup>
4
<TargetFramework>net8.0</TargetFramework>
5
<ImplicitUsings>enable</ImplicitUsings>
6
<Nullable>enable</Nullable>
7
</PropertyGroup>
8
9
</Project>