-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Refactored project structure and dependencies The solution file has been updated to reflect changes in the project structure. A common project was removed, and two new projects were added for testing and FSharp. The CLI project's dependencies have also been updated accordingly. Files from the common directory were moved to the FSharp directory, and references in these files were updated to match their new location. Additionally, a new file was added to the FSharp project, and its package references were adjusted for better organization. * Revert test package sln change We'll catch this in a different branch * This file doesn't exist yet
- Loading branch information
1 parent
470ec6a
commit 649dce1
Showing
6 changed files
with
33 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net9.0</TargetFramework> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<RootNamespace>UnMango.Tdl</RootNamespace> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="Library.fs"/> | ||
<Compile Include="Broker.fs"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="FSharp.Control.Reactive" Version="5.0.5"/> | ||
<PackageReference Include="MinVer" Version="5.0.0" PrivateAssets="all"/> | ||
<PackageReference Include="UnMango.CliWrap.FSharp" Version="0.0.7-alpha.0.2"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Abstractions\UnMango.Tdl.Abstractions.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |