返回提交历史
Added
XFEExtension.NetCore.XApp.sln
+25
-0
Added
XFEExtension.NetCore.XApp/Class1.cs
+6
-0
Added
XFEExtension.NetCore.XApp/XFEExtension.NetCore.XApp.csproj
+9
-0
XFEstudio/XFEExtension.NetCore.XApp.Core
添加项目文件。
b7e91c6
代码差异
3 个文件
+40
-0
@@ -0,0 +1,25 @@
1
2
Microsoft Visual Studio Solution File, Format Version 12.00
3
# Visual Studio Version 17
4
VisualStudioVersion = 17.9.34728.123
5
MinimumVisualStudioVersion = 10.0.40219.1
6
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XFEExtension.NetCore.XApp", "XFEExtension.NetCore.XApp\XFEExtension.NetCore.XApp.csproj", "{C4A15B7C-2FFD-423F-9A8D-8F918F367B07}"
7
EndProject
8
Global
9
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10
Debug|Any CPU = Debug|Any CPU
11
Release|Any CPU = Release|Any CPU
12
EndGlobalSection
13
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14
{C4A15B7C-2FFD-423F-9A8D-8F918F367B07}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15
{C4A15B7C-2FFD-423F-9A8D-8F918F367B07}.Debug|Any CPU.Build.0 = Debug|Any CPU
16
{C4A15B7C-2FFD-423F-9A8D-8F918F367B07}.Release|Any CPU.ActiveCfg = Release|Any CPU
17
{C4A15B7C-2FFD-423F-9A8D-8F918F367B07}.Release|Any CPU.Build.0 = Release|Any CPU
18
EndGlobalSection
19
GlobalSection(SolutionProperties) = preSolution
20
HideSolutionNode = FALSE
21
EndGlobalSection
22
GlobalSection(ExtensibilityGlobals) = postSolution
23
SolutionGuid = {5A357989-C562-42B0-B7B3-B47AC52418C9}
24
EndGlobalSection
25
EndGlobal
@@ -0,0 +1,6 @@
1
namespace XFEExtension.NetCore.XApp;
2
3
public class XApp
4
{
5
6
}
@@ -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>