Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

flatten directory structure #16

Merged
merged 1 commit into from
Jun 26, 2023
Merged
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
14 changes: 5 additions & 9 deletions src/Monies.sln → Monies.sln
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29728.190
# Visual Studio Version 17
VisualStudioVersion = 17.6.33801.468
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".paket", ".paket", "{9A0000FD-D324-4168-836B-56AE20ED26AB}"
ProjectSection(SolutionItems) = preProject
paket.dependencies = paket.dependencies
EndProjectSection
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monies", "src\Monies\Monies.csproj", "{1B8207CB-371E-4AC2-9F17-E59EC1496F13}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monies", "Monies\Monies.csproj", "{1B8207CB-371E-4AC2-9F17-E59EC1496F13}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monies.Tests", "Monies.Tests\Monies.Tests.csproj", "{903DCDC0-3DCD-473F-B4B3-6EDD10FD72FD}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monies.Tests", "src\Monies.Tests\Monies.Tests.csproj", "{903DCDC0-3DCD-473F-B4B3-6EDD10FD72FD}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{6FFAFA8F-14A8-4DF9-937E-1B01CB8D8990}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
paket.dependencies = paket.dependencies
EndProjectSection
EndProject
Global
Expand Down
2 changes: 1 addition & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ open Fake.Tools
// *********************************
// properties

let sln = "./src/Monies.sln"
let sln = "./Monies.sln"

module BuildConfiguration =
let get () =
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/Monies.Tests/Monies.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
<ItemGroup>
<Content Include="xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<Import Project="..\.paket\Paket.Restore.targets" />
<Import Project="..\..\.paket\Paket.Restore.targets" />
</Project>
4 changes: 2 additions & 2 deletions src/Monies/Monies.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\.editorconfig" Link=".editorconfig" />
<None Include="..\..\.editorconfig" Link=".editorconfig" />
</ItemGroup>
<Import Project="..\.paket\Paket.Restore.targets" />
<Import Project="..\..\.paket\Paket.Restore.targets" />
</Project>