Skip to content

Commit 2a13771

Browse files
Merge pull request #69 from max-ieremenko/migrate/slnx
migrate .sln to .slnx
2 parents c20f770 + 0f4deed commit 2a13771

6 files changed

Lines changed: 44 additions & 251 deletions

File tree

Build/tasks/build-tasks.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ task Clean {
4545
}
4646

4747
task Build {
48-
$solutionFile = Join-Path $settings.sources 'SqlDatabase.sln'
48+
$solutionFile = Join-Path $settings.sources 'SqlDatabase.slnx'
4949
exec { dotnet restore $solutionFile }
5050
exec { dotnet build $solutionFile -t:Rebuild -p:Configuration=Release }
5151
}

Examples/PackageManagerConsole/PackageManagerConsole.sln

Lines changed: 0 additions & 31 deletions
This file was deleted.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<Solution>
2+
<Project Path="SolutionScripts/SolutionScripts.csproj" />
3+
<Project Path="SomeApp/SomeApp.csproj" />
4+
</Solution>

Examples/PackageManagerConsole/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ How to use SqlDatabase in the VS Package manager console
33

44
This example shows how to combine [SolutionScripts](https://www.nuget.org/packages/SolutionScripts/) and SqlDatabase
55

6-
Open this [solution](PackageManagerConsole.sln) in the Visual Studio. Open Package manage console (in the VS menu Tools/NuGet Package Manager/Package Manager Console)
6+
Open this [solution](PackageManagerConsole.slnx) in the Visual Studio. Open Package manage console (in the VS menu Tools/NuGet Package Manager/Package Manager Console)
77

88
![Console](Sreen.png)
99

0 commit comments

Comments
 (0)