Adjust Solution Name
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
sed -i '/^Project.*"VirtualChemistry".*/d' ./VirtualChemistryTest.sln
|
sed -i '/^Project.*"VirtualChemistry".*/d' ./VirtualChemistry.Test.sln
|
||||||
sed -i '/^EndProject$/d' ./VirtualChemistryTest.sln
|
sed -i '/^EndProject$/d' ./VirtualChemistry.Test.sln
|
||||||
sed -i '/^Project.*/aEndProject' ./VirtualChemistryTest.sln
|
sed -i '/^Project.*/aEndProject' ./VirtualChemistry.Test.sln
|
||||||
|
|
||||||
sed -i '/.*ProjectReference.*/d' ./VirtualChemistryTest.csproj
|
sed -i '/.*ProjectReference.*/d' ./VirtualChemistry.Test.csproj
|
||||||
|
|||||||
@@ -5,6 +5,8 @@
|
|||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
|
|
||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
|
|
||||||
|
<RootNamespace>VirtualChemistry.Test</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VirtualChemistryTest", "VirtualChemistryTest.csproj", "{D8A30C42-A49B-4096-BF53-32A82B492233}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VirtualChemistry.Test", "VirtualChemistry.Test.csproj", "{D8A30C42-A49B-4096-BF53-32A82B492233}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VirtualChemistry", "..\VirtualChemistry\VirtualChemistry.csproj", "{C1C0E45F-59D4-44C3-A55F-80F44DF2935D}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VirtualChemistry", "..\VirtualChemistry\VirtualChemistry.csproj", "{C1C0E45F-59D4-44C3-A55F-80F44DF2935D}"
|
||||||
EndProject
|
EndProject
|
||||||
@@ -10,11 +10,11 @@ for x in d['data']:
|
|||||||
if x['id'] == 'Skeleton':
|
if x['id'] == 'Skeleton':
|
||||||
skVersion = x['version']
|
skVersion = x['version']
|
||||||
|
|
||||||
w = open('VirtualChemistryTest.csproj', 'r').read()
|
w = open('VirtualChemistry.Test.csproj', 'r').read()
|
||||||
s = w.split('<ItemGroup>')
|
s = w.split('<ItemGroup>')
|
||||||
s[1] = '\n<PackageReference Include="VirtualChemistry" Version="'+vcVersion+'"/>\n' + s[1]
|
s[1] = '\n<PackageReference Include="VirtualChemistry" Version="'+vcVersion+'"/>\n' + s[1]
|
||||||
s[1] = '\n<PackageReference Include="Skeleton" Version="'+skVersion+'"/>\n' + s[1]
|
s[1] = '\n<PackageReference Include="Skeleton" Version="'+skVersion+'"/>\n' + s[1]
|
||||||
w = '<ItemGroup>'.join(s)
|
w = '<ItemGroup>'.join(s)
|
||||||
print(w)
|
print(w)
|
||||||
with open('VirtualChemistryTest.csproj', 'w') as f:
|
with open('VirtualChemistry.Test.csproj', 'w') as f:
|
||||||
f.write(w)
|
f.write(w)
|
||||||
@@ -7,7 +7,7 @@ using VirtualChemistry.Chemistry.Containers;
|
|||||||
using VirtualChemistry.Chemistry.Mixtures.Implements;
|
using VirtualChemistry.Chemistry.Mixtures.Implements;
|
||||||
using VirtualChemistry.Constants;
|
using VirtualChemistry.Constants;
|
||||||
|
|
||||||
namespace VirtualChemistryTest;
|
namespace VirtualChemistry.Test;
|
||||||
|
|
||||||
public static class AtomSoupTest
|
public static class AtomSoupTest
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ using VirtualChemistry.Chemistry.Atoms.Resolver;
|
|||||||
using VirtualChemistry.Chemistry.Bonds.Implements;
|
using VirtualChemistry.Chemistry.Bonds.Implements;
|
||||||
using VirtualChemistry.Constants;
|
using VirtualChemistry.Constants;
|
||||||
|
|
||||||
namespace VirtualChemistryTest;
|
namespace VirtualChemistry.Test;
|
||||||
|
|
||||||
public static class AtomTests
|
public static class AtomTests
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace VirtualChemistryTest;
|
namespace VirtualChemistry.Test;
|
||||||
|
|
||||||
public static class BIndexTest
|
public static class BIndexTest
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ using VirtualChemistry.Chemistry.Compounds.Implements;
|
|||||||
using VirtualChemistry.Chemistry.Containers;
|
using VirtualChemistry.Chemistry.Containers;
|
||||||
using VirtualChemistry.Chemistry.Mixtures.Implements;
|
using VirtualChemistry.Chemistry.Mixtures.Implements;
|
||||||
|
|
||||||
namespace VirtualChemistryTest;
|
namespace VirtualChemistry.Test;
|
||||||
|
|
||||||
public static class BondConnectionTest
|
public static class BondConnectionTest
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ using VirtualChemistry.Chemistry.Compounds.Implements;
|
|||||||
using VirtualChemistry.Chemistry.Containers;
|
using VirtualChemistry.Chemistry.Containers;
|
||||||
using VirtualChemistry.Chemistry.Mixtures.Implements;
|
using VirtualChemistry.Chemistry.Mixtures.Implements;
|
||||||
|
|
||||||
namespace VirtualChemistryTest;
|
namespace VirtualChemistry.Test;
|
||||||
|
|
||||||
public static class MixtureDegenerateTest
|
public static class MixtureDegenerateTest
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ using VirtualChemistry.Chemistry.Compounds.Implements;
|
|||||||
using VirtualChemistry.Chemistry.Containers;
|
using VirtualChemistry.Chemistry.Containers;
|
||||||
using VirtualChemistry.Chemistry.Mixtures.Implements;
|
using VirtualChemistry.Chemistry.Mixtures.Implements;
|
||||||
|
|
||||||
namespace VirtualChemistryTest;
|
namespace VirtualChemistry.Test;
|
||||||
|
|
||||||
public static class ResolvabilityTest
|
public static class ResolvabilityTest
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user