diff --git a/.gitignore b/.gitignore index f466f6a..eaeda31 100644 --- a/.gitignore +++ b/.gitignore @@ -18,7 +18,6 @@ bld/ /Data /Log *.log -*.htm *.nuspec *.nupkg /BinTest diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..cc43d10 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "ZeroIoT"] + path = Samples/ZeroIoT + url = https://github.com/NewLifeX/ZeroIoT diff --git a/NewLife.Remoting.sln b/NewLife.Remoting.sln index fd6ed6e..7ffff0f 100644 --- a/NewLife.Remoting.sln +++ b/NewLife.Remoting.sln @@ -26,6 +26,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Zero.RpcServer", "Samples\Z EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NewLife.Remoting.Extensions", "NewLife.Remoting.Extensions\NewLife.Remoting.Extensions.csproj", "{8A9D4116-66D8-48B5-B997-CAD182304F96}" EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IoTZero", "Samples\IoTZero\IoTZero.csproj", "{1DEAF969-F093-4D99-80C9-1CEA3BD06ABB}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -56,6 +58,10 @@ Global {8A9D4116-66D8-48B5-B997-CAD182304F96}.Debug|Any CPU.Build.0 = Debug|Any CPU {8A9D4116-66D8-48B5-B997-CAD182304F96}.Release|Any CPU.ActiveCfg = Release|Any CPU {8A9D4116-66D8-48B5-B997-CAD182304F96}.Release|Any CPU.Build.0 = Release|Any CPU + {1DEAF969-F093-4D99-80C9-1CEA3BD06ABB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1DEAF969-F093-4D99-80C9-1CEA3BD06ABB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1DEAF969-F093-4D99-80C9-1CEA3BD06ABB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1DEAF969-F093-4D99-80C9-1CEA3BD06ABB}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -63,6 +69,7 @@ Global GlobalSection(NestedProjects) = preSolution {685205DD-0754-4877-9A96-40CD18F8D84B} = {8DB8495C-1EB6-41AE-83DD-55DBBB0E6FA2} {8351AC88-1955-48AD-B6F4-26959E1A0C4C} = {8DB8495C-1EB6-41AE-83DD-55DBBB0E6FA2} + {1DEAF969-F093-4D99-80C9-1CEA3BD06ABB} = {8DB8495C-1EB6-41AE-83DD-55DBBB0E6FA2} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {323831A1-A95B-40AB-B9AD-36A0BC10C2CB} diff --git a/Samples/IoTZero/IoTZero.csproj b/Samples/IoTZero/IoTZero.csproj new file mode 100644 index 0000000..5ca9251 --- /dev/null +++ b/Samples/IoTZero/IoTZero.csproj @@ -0,0 +1,108 @@ + + + + net8.0 + 物联网服务平台 + IoT服务平台 + 新生命开发团队 + ©2002-2024 NewLife + 1.0 + $([System.DateTime]::Now.ToString(`yyyy.MMdd`)) + $(VersionPrefix).$(VersionSuffix) + $(Version) + $(VersionPrefix).* + false + ..\..\Bin\IoTZero + false + enable + latest + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Samples/IoTZero/Properties/launchSettings.json b/Samples/IoTZero/Properties/launchSettings.json new file mode 100644 index 0000000..6e42cc9 --- /dev/null +++ b/Samples/IoTZero/Properties/launchSettings.json @@ -0,0 +1,12 @@ +{ + "profiles": { + "IoTZero": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "http://localhost:1880" + } + } +} \ No newline at end of file