Adjust Solution Name
This commit is contained in:
@@ -10,11 +10,11 @@ for x in d['data']:
|
||||
if x['id'] == 'Skeleton':
|
||||
skVersion = x['version']
|
||||
|
||||
w = open('VirtualChemistryTest.csproj', 'r').read()
|
||||
w = open('VirtualChemistry.Test.csproj', 'r').read()
|
||||
s = w.split('<ItemGroup>')
|
||||
s[1] = '\n<PackageReference Include="VirtualChemistry" Version="'+vcVersion+'"/>\n' + s[1]
|
||||
s[1] = '\n<PackageReference Include="Skeleton" Version="'+skVersion+'"/>\n' + s[1]
|
||||
w = '<ItemGroup>'.join(s)
|
||||
print(w)
|
||||
with open('VirtualChemistryTest.csproj', 'w') as f:
|
||||
with open('VirtualChemistry.Test.csproj', 'w') as f:
|
||||
f.write(w)
|
||||
Reference in New Issue
Block a user