Skip to content

Commit e63dcf4

Browse files
committed
Move versioning to common build props
1 parent 11379a4 commit e63dcf4

File tree

5 files changed

+16
-10
lines changed

5 files changed

+16
-10
lines changed

Bonsai.ML.sln

+15-7
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,26 @@ VisualStudioVersion = 17.0.31903.59
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{12312384-8828-4786-AE19-EFCEDF968290}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bonsai.ML", "src\Bonsai.ML\Bonsai.ML.csproj", "{AA6BE73F-1E15-49A5-AC3C-CD069035C940}"
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Bonsai.ML", "src\Bonsai.ML\Bonsai.ML.csproj", "{AA6BE73F-1E15-49A5-AC3C-CD069035C940}"
99
EndProject
10-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bonsai.ML.LinearDynamicalSystems", "src\Bonsai.ML.LinearDynamicalSystems\Bonsai.ML.LinearDynamicalSystems.csproj", "{17AABD18-E275-4409-9E33-3D755B809FF6}"
10+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Bonsai.ML.LinearDynamicalSystems", "src\Bonsai.ML.LinearDynamicalSystems\Bonsai.ML.LinearDynamicalSystems.csproj", "{17AABD18-E275-4409-9E33-3D755B809FF6}"
1111
EndProject
12-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bonsai.ML.Visualizers", "src\Bonsai.ML.Visualizers\Bonsai.ML.Visualizers.csproj", "{196AA5C7-AE8A-477B-B01A-B94676EC60EE}"
12+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Bonsai.ML.Visualizers", "src\Bonsai.ML.Visualizers\Bonsai.ML.Visualizers.csproj", "{196AA5C7-AE8A-477B-B01A-B94676EC60EE}"
1313
EndProject
1414
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{461FE3E2-21C4-47F9-8405-DF72326AAB2B}"
1515
EndProject
16-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bonsai.ML.LinearDynamicalSystems.Tests", "tests\Bonsai.ML.LinearDynamicalSystems.Tests\Bonsai.ML.LinearDynamicalSystems.Tests.csproj", "{81DB65B3-EA65-4947-8CF1-0E777324C082}"
16+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Bonsai.ML.LinearDynamicalSystems.Tests", "tests\Bonsai.ML.LinearDynamicalSystems.Tests\Bonsai.ML.LinearDynamicalSystems.Tests.csproj", "{81DB65B3-EA65-4947-8CF1-0E777324C082}"
17+
EndProject
18+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{FEFDDEAC-91FD-45DA-A67A-C76D538FD484}"
19+
ProjectSection(SolutionItems) = preProject
20+
Directory.Build.props = Directory.Build.props
21+
EndProjectSection
1722
EndProject
1823
Global
1924
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2025
Debug|Any CPU = Debug|Any CPU
2126
Release|Any CPU = Release|Any CPU
2227
EndGlobalSection
23-
GlobalSection(SolutionProperties) = preSolution
24-
HideSolutionNode = FALSE
25-
EndGlobalSection
2628
GlobalSection(ProjectConfigurationPlatforms) = postSolution
2729
{AA6BE73F-1E15-49A5-AC3C-CD069035C940}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
2830
{AA6BE73F-1E15-49A5-AC3C-CD069035C940}.Debug|Any CPU.Build.0 = Debug|Any CPU
@@ -41,10 +43,16 @@ Global
4143
{81DB65B3-EA65-4947-8CF1-0E777324C082}.Release|Any CPU.ActiveCfg = Release|Any CPU
4244
{81DB65B3-EA65-4947-8CF1-0E777324C082}.Release|Any CPU.Build.0 = Release|Any CPU
4345
EndGlobalSection
46+
GlobalSection(SolutionProperties) = preSolution
47+
HideSolutionNode = FALSE
48+
EndGlobalSection
4449
GlobalSection(NestedProjects) = preSolution
4550
{AA6BE73F-1E15-49A5-AC3C-CD069035C940} = {12312384-8828-4786-AE19-EFCEDF968290}
4651
{17AABD18-E275-4409-9E33-3D755B809FF6} = {12312384-8828-4786-AE19-EFCEDF968290}
4752
{196AA5C7-AE8A-477B-B01A-B94676EC60EE} = {12312384-8828-4786-AE19-EFCEDF968290}
4853
{81DB65B3-EA65-4947-8CF1-0E777324C082} = {461FE3E2-21C4-47F9-8405-DF72326AAB2B}
4954
EndGlobalSection
55+
GlobalSection(ExtensibilityGlobals) = postSolution
56+
SolutionGuid = {B6468F13-97CD-45E0-9E1E-C122D7F1E09F}
57+
EndGlobalSection
5058
EndGlobal

src/Directory.Build.props renamed to Directory.Build.props

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
<PackageIcon>icon.png</PackageIcon>
1515
<IncludeSymbols>true</IncludeSymbols>
1616
<RepositoryType>git</RepositoryType>
17+
<VersionPrefix>0.2.0</VersionPrefix>
1718
<VersionSuffix></VersionSuffix>
1819
<LangVersion>9.0</LangVersion>
1920
</PropertyGroup>

src/Bonsai.ML.LinearDynamicalSystems/Bonsai.ML.LinearDynamicalSystems.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
<Description>A Bonsai package for implementing the Kalman Filter using python.</Description>
55
<PackageTags>Bonsai Rx ML KalmanFilter LinearDynamicalSystems</PackageTags>
66
<TargetFrameworks>net472;netstandard2.0</TargetFrameworks>
7-
<Version>0.2.0</Version>
87
</PropertyGroup>
98
<ItemGroup>
109
<PackageReference Include="Bonsai.Core" Version="2.8.1" />

src/Bonsai.ML.Visualizers/Bonsai.ML.Visualizers.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
<PackageTags>Bonsai Rx ML Machine Learning Visualizers</PackageTags>
66
<TargetFrameworks>net472</TargetFrameworks>
77
<UseWindowsForms>true</UseWindowsForms>
8-
<Version>0.2.0</Version>
98
</PropertyGroup>
109
<ItemGroup>
1110
<PackageReference Include="Bonsai.Core" Version="2.8.1" />

src/Bonsai.ML/Bonsai.ML.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
<Description>Bonsai Library containing reactive infrastructure for machine learning.</Description>
66
<PackageTags>Bonsai Rx ML Machine Learning</PackageTags>
77
<TargetFrameworks>net472;netstandard2.0</TargetFrameworks>
8-
<VersionPrefix>0.1.0</VersionPrefix>
98
</PropertyGroup>
109

1110
<ItemGroup>

0 commit comments

Comments
 (0)