-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: Replace Paket with NuGet. * Ignore FSharp.Core and System.Configuration.ConfigurationManager by dependabot. * Tidy xml files * Add .editorconfig * Apply rules to proj files * reorder sln text --------- Co-authored-by: Ruben Bartelink <[email protected]>
- Loading branch information
Showing
20 changed files
with
92 additions
and
716 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 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,18 @@ | ||
root = true | ||
|
||
# Source files | ||
[*.{fs,fsx}] | ||
indent_style = space | ||
indent_size = 4 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
end_of_line = lf | ||
|
||
# Project files | ||
[*.{csproj,fsproj,props}] | ||
indent_size = 2 | ||
|
||
# YAML files | ||
[*.yml] | ||
indent_size = 2 | ||
indent_style = space |
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.
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 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,19 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<!-- Build deps --> | ||
<PackageVersion Include="DotNet.ReproducibleBuilds" Version="1.1.1"/> | ||
|
||
<!-- Impl deps --> | ||
<PackageVersion Include="FSharp.Core" Version="4.3.2"/> | ||
<PackageVersion Include="System.Configuration.ConfigurationManager" Version="4.4.0"/> | ||
|
||
<!-- Test deps --> | ||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.3.2"/> | ||
<PackageVersion Include="xunit" Version="2.4.2"/> | ||
<PackageVersion Include="xunit.runner.visualstudio" Version="2.4.5"/> | ||
<PackageVersion Include="Unquote" Version="6.1.0"/> | ||
</ItemGroup> | ||
</Project> |
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 |
---|---|---|
@@ -1,7 +1,4 @@ | ||
@echo off | ||
|
||
export PAKET_SKIP_RESTORE_TARGETS=true | ||
|
||
dotnet tool restore | ||
dotnet paket restore | ||
dotnet fsi build.fsx %* |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<packageSources> | ||
<!--To inherit the global NuGet package sources remove the <clear/> line below --> | ||
<clear /> | ||
<add key="nuget" value="https://api.nuget.org/v3/index.json" /> | ||
</packageSources> | ||
<packageSourceMapping> | ||
<packageSource key="nuget"> | ||
<package pattern="*" /> | ||
</packageSource> | ||
</packageSourceMapping> | ||
</configuration> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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.
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 |
---|---|---|
@@ -1,30 +1,31 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<GenerateAssemblyInfo>true</GenerateAssemblyInfo> | ||
<PackageIcon>logo.png</PackageIcon> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="Types.fs" /> | ||
<Compile Include="Attributes.fs" /> | ||
<Compile Include="Utils.fs" /> | ||
<Compile Include="ConfigReaders.fs" /> | ||
<Compile Include="UnionArgInfo.fs" /> | ||
<Compile Include="PreCompute.fs" /> | ||
<Compile Include="UnParsers.fs" /> | ||
<Compile Include="ParseResults.fs" /> | ||
<Compile Include="Parsers\Common.fs" /> | ||
<Compile Include="Parsers\Cli.fs" /> | ||
<Compile Include="Parsers\KeyValue.fs" /> | ||
<Compile Include="ArgumentParser.fs" /> | ||
<None Include="paket.references" /> | ||
<None Include="..\..\resource\logo.png" Pack="true" PackagePath="" /> | ||
<Compile Include="Types.fs"/> | ||
<Compile Include="Attributes.fs"/> | ||
<Compile Include="Utils.fs"/> | ||
<Compile Include="ConfigReaders.fs"/> | ||
<Compile Include="UnionArgInfo.fs"/> | ||
<Compile Include="PreCompute.fs"/> | ||
<Compile Include="UnParsers.fs"/> | ||
<Compile Include="ParseResults.fs"/> | ||
<Compile Include="Parsers\Common.fs"/> | ||
<Compile Include="Parsers\Cli.fs"/> | ||
<Compile Include="Parsers\KeyValue.fs"/> | ||
<Compile Include="ArgumentParser.fs"/> | ||
<None Include="..\..\resource\logo.png" Pack="true" PackagePath=""/> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<!-- SourceLink etc --> | ||
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.1.1" PrivateAssets="All" /> | ||
<PackageReference Include="DotNet.ReproducibleBuilds" PrivateAssets="All"/> | ||
|
||
<PackageReference Include="FSharp.Core"/> | ||
|
||
<PackageReference Include="System.Configuration.ConfigurationManager"/> | ||
</ItemGroup> | ||
<Import Project="..\..\.paket\Paket.Restore.targets" /> | ||
</Project> |
This file was deleted.
Oops, something went wrong.
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.