10000 rename to Python.System · heartacker/CScripting@eb0950a · GitHub
[go: up one dir, main page]

Skip to content

Commit eb0950a

Browse files
committed
rename to Python.System
1 parent 7534a93 commit eb0950a

File tree

11 files changed

+47
-49
lines changed

11 files changed

+47
-49
lines changed
File renamed without changes.

Python.System.sln

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.5.33627.172
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Python.System", "Python.System\Python.System.csproj", "{CAAA3827-188E-49E5-9293-5708EEC891BF}"
7+
EndProject
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Python.SystemDemo", "Python.SystemDemo\Python.SystemDemo.csproj", "{86746963-6158-4728-B19A-AC6D78C8486F}"
9+
EndProject
10+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Python.SystemTests", "Python.SystemTests\Python.SystemTests.csproj", "{5D183A65-E961-4B9F-9365-1BA794005A64}"
11+
EndProject
12+
Global
13+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
14+
Debug|Any CPU = Debug|Any CPU
15+
Release|Any CPU = Release|Any CPU
16+
EndGlobalSection
17+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
18+
{CAAA3827-188E-49E5-9293-5708EEC891BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
19+
{CAAA3827-188E-49E5-9293-5708EEC891BF}.Debug|Any CPU.Build.0 = Debug|Any CPU
20+
{CAAA3827-188E-49E5-9293-5708EEC891BF}.Release|Any CPU.ActiveCfg = Release|Any CPU
21+
{CAAA3827-188E-49E5-9293-5708EEC891BF}.Release|Any CPU.Build.0 = Release|Any CPU
22+
{86746963-6158-4728-B19A-AC6D78C8486F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
23+
{86746963-6158-4728-B19A-AC6D78C8486F}.Debug|Any CPU.Build.0 = Debug|Any CPU
24+
{86746963-6158-4728-B19A-AC6D78C8486F}.Release|Any CPU.ActiveCfg = Release|Any CPU
25+
{86746963-6158-4728-B19A-AC6D78C8486F}.Release|Any CPU.Build.0 = Release|Any CPU
26+
{5D183A65-E961-4B9F-9365-1BA794005A64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27+
{5D183A65-E961-4B9F-9365-1BA794005A64}.Debug|Any CPU.Build.0 = Debug|Any CPU
28+
{5D183A65-E961-4B9F-9365-1BA794005A64}.Release|Any CPU.ActiveCfg = Release|Any CPU
29+
{5D183A65-E961-4B9F-9365-1BA794005A64}.Release|Any CPU.Build.0 = Release|Any CPU
30+
EndGlobalSection
31+
GlobalSection(SolutionProperties) = preSolution
32+
HideSolutionNode = FALSE
33+
EndGlobalSection
34+
GlobalSection(ExtensibilityGlobals) = postSolution
35+
SolutionGuid = {19598AB3-02E0-4316-A003-BDCAC338A7DA}
36+
EndGlobalSection
37+
EndGlobal

S.System/S.System.csproj renamed to Python.System/Python.System.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
99
<Title>Static System function Like Python</Title>
1010
<Authors>heartacker</Authors>
11-
<Description>provide some static funtion that like python</Description>
11+
<Description>provide some static funtion that like python and write c# some like Python</Description>
1212
<Copyright>MIT</Copyright>
1313
<PackageProjectUrl></PackageProjectUrl>
1414
<PackageIcon>S.System.png</PackageIcon>
File renamed without changes.

S.System/System.cs renamed to Python.System/System.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
using static Python.Runtime.Py;
1717
using static Python.Runtime.PythonEngine;
1818

19-
namespace S
19+
namespace Python
2020
{
2121
/// <summary>
2222
/// A:

S.SystemDemo/S.SystemDemo.csproj renamed to Python.SystemDemo/Python.SystemDemo.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15-
<ProjectReference Include="..\S.System\S.System.csproj" />
15+
<ProjectReference Include="..\Python.System\Python.System.csproj" />
1616
</ItemGroup>
1717

1818
</Project>

S.SystemDemo/S.SystemDemo.cs renamed to Python.SystemDemo/SystemDemo.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
using static S.System;
2-
using System;
1+
using static Python.System;
32
using System.Collections.Generic;
43
using System.Linq;
54
using System.Text;
65
using System.Threading.Tasks;
76

8-
namespace S.Tests
7+
namespace Python.SystemDemo
98
{
10-
public class SystemDemo
9+
public class Demo
1110
{
1211
public static void Main(string[] args)
1312
{

S.SystemTests/S.SystemTests.csproj renamed to Python.SystemTests/Python.SystemTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</ItemGroup>
1818

1919
<ItemGroup>
20-
<ProjectReference Include="..\S.System\S.System.csproj" />
20+
<ProjectReference Include="..\Python.System\Python.System.csproj" />
2121
</ItemGroup>
2222

2323
</Project>

S.SystemTests/SystemTests.cs renamed to Python.SystemTests/SystemTests.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
using S;
2-
using Microsoft.VisualStudio.TestTools.UnitTesting;
1+
using Microsoft.VisualStudio.TestTools.UnitTesting;
32
using System;
43
using System.Collections.Generic;
54
using System.Linq;
65
using System.Text;
76
using System.Threading.Tasks;
87

9-
using static S.System;
8+
using static Python.System;
109

11-
namespace S.Tests
10+
namespace Python.Tests
1211
{
1312
[TestClass()]
1413
public class SystemTests
File renamed without changes.

S.System.sln

Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
 (0)
0