Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 0 additions & 70 deletions Content/Console/MyLib.1.sln

This file was deleted.

20 changes: 20 additions & 0 deletions Content/Console/MyLib.1.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Solution>
<Configurations>
<Platform Name="Any CPU" />
<Platform Name="x64" />
<Platform Name="x86" />
</Configurations>
<Folder Name="/src/">
<Project Path="src/MyLib.1/MyLib.1.fsproj">
<Platform Solution="*|x64" Project="x64" />
<Platform Solution="*|x86" Project="x86" />
</Project>
</Folder>
<Folder Name="/tests/">
<Project Path="tests/MyLib.1.Tests/MyLib.1.Tests.fsproj">
<Platform Solution="*|x64" Project="x64" />
<Platform Solution="*|x86" Project="x86" />
</Project>
</Folder>
<Project Path="build/build.fsproj" />
</Solution>
2 changes: 1 addition & 1 deletion Content/Console/build/build.fs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ let rootDirectory =
let sln =
__SOURCE_DIRECTORY__
</> ".."
</> "MyLib.1.sln"
</> "MyLib.1.slnx"

let src =
__SOURCE_DIRECTORY__
Expand Down
6 changes: 0 additions & 6 deletions Content/Console/global.json

This file was deleted.

70 changes: 0 additions & 70 deletions Content/Library/MyLib.1.sln

This file was deleted.

20 changes: 20 additions & 0 deletions Content/Library/MyLib.1.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Solution>
<Configurations>
<Platform Name="Any CPU" />
<Platform Name="x64" />
<Platform Name="x86" />
</Configurations>
<Folder Name="/src/">
<Project Path="src/MyLib.1/MyLib.1.fsproj">
<Platform Solution="*|x64" Project="x64" />
<Platform Solution="*|x86" Project="x86" />
</Project>
</Folder>
<Folder Name="/tests/">
<Project Path="tests/MyLib.1.Tests/MyLib.1.Tests.fsproj">
<Platform Solution="*|x64" Project="x64" />
<Platform Solution="*|x86" Project="x86" />
</Project>
</Folder>
<Project Path="build/build.fsproj" />
</Solution>
2 changes: 1 addition & 1 deletion Content/Library/build/build.fs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ let productName = "MyLib.1"

let sln =
rootDirectory
</> "MyLib.1.sln"
</> "MyLib.1.slnx"

let srcCodeGlob =
!!(rootDirectory
Expand Down
6 changes: 0 additions & 6 deletions Content/Library/global.json

This file was deleted.

53 changes: 0 additions & 53 deletions MiniScaffold.sln

This file was deleted.

11 changes: 11 additions & 0 deletions MiniScaffold.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<Solution>
<Configurations>
<Platform Name="Any CPU" />
<Platform Name="x64" />
<Platform Name="x86" />
</Configurations>
<Folder Name="/tests/">
<Project Path="tests/MiniScaffold.Tests/MiniScaffold.Tests.fsproj" />
</Folder>
<Project Path="build/build.fsproj" />
</Solution>
2 changes: 1 addition & 1 deletion build/build.fs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ let productName = "MiniScaffold"

let sln =
rootDirectory
</> "MiniScaffold.sln"
</> "MiniScaffold.slnx"


let testsCodeGlob =
Expand Down
4 changes: 2 additions & 2 deletions docsSrc/Reference/Library_Output.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ When you do an initial scaffold, your folder will be filled with this set of fil
├── CHANGELOG.md
├── Directory.Build.props
├── LICENSE.md
├── MyLib.1.sln
├── MyLib.1.slnx
├── README.md
├── build
│   ├── build.fs
Expand Down Expand Up @@ -74,7 +74,7 @@ When you do an initial scaffold, your folder will be filled with this set of fil
- `.vscode\settings.json` - File containing all VSCode settings for this repository.
- `Directory.Build.props` - Top level configuration for project files. See [Microsoft Docs](https://docs.microsoft.com/en-us/visualstudio/msbuild/customize-your-build?view=vs-2019#directorybuildprops-and-directorybuildtargets) for more info.
- `LICENSE.md` - Your repositories license. Starts with MIT. [Choose a license](https://choosealicense.com/) if you're looking for more choices.
- `MyCoolNewLib.sln` - Solution file for your repository. See [Microsoft Docs](https://docs.microsoft.com/en-us/visualstudio/extensibility/internals/solution-dot-sln-file?view=vs-2019) for more info.
- `MyCoolNewLib.slnx` - Solution file for your repository in the new XML-based format. See [Microsoft Docs](https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-sln) for more info.
- `README.md` - The text file that introduces and explains a project.
- `CHANGELOG.md` - The text file containing versioning, date, and release notes.
- `build.cmd` - Windows specific entry point for building the repository.
Expand Down
2 changes: 1 addition & 1 deletion docsSrc/Tutorials/Getting_Started_With_Libraries.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ This will generate a structure similar to this
│   │   └── theme-toggle.js
│   └── index.md
├── global.json
├── MyCoolNewLib.sln
├── MyCoolNewLib.slnx
├── src
│   ├── Directory.Build.props
│   └── MyCoolNewLib
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.100",
"version": "9.0.306",
"rollForward": "latestMinor"
}
}
Loading