Skip to content

Commit 6266b2b

Browse files
Upgrade packages
Add build to solution
1 parent 25287af commit 6266b2b

4 files changed

Lines changed: 20 additions & 8 deletions

File tree

WeakEvent.sln

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 14
4-
VisualStudioVersion = 14.0.23107.0
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.29318.209
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WeakEvent", "src\WeakEvent\WeakEvent.csproj", "{96E2D296-BDC9-449D-8094-F1020DFBFB8B}"
77
EndProject
@@ -13,6 +13,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1313
EndProject
1414
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WeakEvent.Tests", "tests\WeakEvent.Tests\WeakEvent.Tests.csproj", "{C95539EE-3EA3-4B64-A87D-C55370EC9BAE}"
1515
EndProject
16+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tools", "tools", "{86659984-FECE-40CF-ABDC-AC8D00D720B7}"
17+
EndProject
18+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "build", "tools\build\build.csproj", "{A31121DA-9FA1-4457-99DF-FD987E241504}"
19+
EndProject
1620
Global
1721
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1822
Debug|Any CPU = Debug|Any CPU
@@ -27,8 +31,16 @@ Global
2731
{C95539EE-3EA3-4B64-A87D-C55370EC9BAE}.Debug|Any CPU.Build.0 = Debug|Any CPU
2832
{C95539EE-3EA3-4B64-A87D-C55370EC9BAE}.Release|Any CPU.ActiveCfg = Release|Any CPU
2933
{C95539EE-3EA3-4B64-A87D-C55370EC9BAE}.Release|Any CPU.Build.0 = Release|Any CPU
34+
{A31121DA-9FA1-4457-99DF-FD987E241504}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
35+
{A31121DA-9FA1-4457-99DF-FD987E241504}.Release|Any CPU.ActiveCfg = Release|Any CPU
3036
EndGlobalSection
3137
GlobalSection(SolutionProperties) = preSolution
3238
HideSolutionNode = FALSE
3339
EndGlobalSection
40+
GlobalSection(NestedProjects) = preSolution
41+
{A31121DA-9FA1-4457-99DF-FD987E241504} = {86659984-FECE-40CF-ABDC-AC8D00D720B7}
42+
EndGlobalSection
43+
GlobalSection(ExtensibilityGlobals) = postSolution
44+
SolutionGuid = {519D6062-FE8B-420E-8F09-6F3133B4D675}
45+
EndGlobalSection
3446
EndGlobal

src/WeakEvent/WeakEvent.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
</ItemGroup>
4444

4545
<ItemGroup>
46-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-63127-02" PrivateAssets="All"/>
47-
<PackageReference Include="MinVer" Version="1.0.0-rc.1" PrivateAssets="All" />
46+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19367-01" PrivateAssets="all" />
47+
<PackageReference Include="MinVer" Version="2.0.0" PrivateAssets="all" />
4848
<PackageReference Include="InternalsVisibleTo.MSBuild" Version="1.0.2" PrivateAssets="All" />
4949
</ItemGroup>
5050

tools/build/Build.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public void OnExecute(CommandLineApplication app)
7676

7777
Target("default", DependsOn("test", "pack"));
7878

79-
RunTargetsAndExit(RemainingArguments);
79+
RunTargetsWithoutExiting(RemainingArguments);
8080
}
8181

8282
private static string GetSolutionDirectory() =>

tools/build/build.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Bullseye" Version="2.3.0" />
10-
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.5" />
11-
<PackageReference Include="SimpleExec" Version="5.0.1" />
9+
<PackageReference Include="Bullseye" Version="3.0.0" />
10+
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.4.2" />
11+
<PackageReference Include="SimpleExec" Version="6.1.0" />
1212
</ItemGroup>
1313

1414
</Project>

0 commit comments

Comments
 (0)