-
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.
- Loading branch information
Showing
6 changed files
with
92 additions
and
93 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<WarningLevel>5</WarningLevel> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<WarningLevel>5</WarningLevel> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference> | ||
</PropertyGroup> | ||
|
||
<!-- NuGet Metadata --> | ||
<PropertyGroup> | ||
<Description>A declarative command line and XML configuration parser for F# applications.</Description> | ||
<Authors>Eirik Tsarpalis</Authors> | ||
<Copyright>2019</Copyright> | ||
<PackageTags>F#, argument, commandline, parser</PackageTags> | ||
<!-- NOTE while ReproducibleBuilds/SourceLink derives the same value, other stuff in the FAKE fsx require this explicitly--> | ||
<RepositoryUrl>https://github.com/fsprojects/Argu/</RepositoryUrl> | ||
<PackageProjectUrl>https://fsprojects.github.io/Argu/</PackageProjectUrl> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
</PropertyGroup> | ||
<!-- FsDocs --> | ||
<PropertyGroup> | ||
<FsDocsLicenseLink>https://github.com/fsprojects/Argu/blob/master/LICENSE.md</FsDocsLicenseLink> | ||
<FsDocsReleaseNotesLink>https://github.com/fsprojects/Argu/blob/master/RELEASE_NOTES.md</FsDocsReleaseNotesLink> | ||
</PropertyGroup> | ||
<!-- NuGet Metadata --> | ||
<PropertyGroup> | ||
<Description>A declarative command line and XML configuration parser for F# applications.</Description> | ||
<Authors>Eirik Tsarpalis</Authors> | ||
<Copyright>2019</Copyright> | ||
<PackageTags>F#, argument, commandline, parser</PackageTags> | ||
<!-- NOTE while ReproducibleBuilds/SourceLink derives the same value, other stuff in the FAKE fsx require this explicitly--> | ||
<RepositoryUrl>https://github.com/fsprojects/Argu/</RepositoryUrl> | ||
<PackageProjectUrl>https://fsprojects.github.io/Argu/</PackageProjectUrl> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
</PropertyGroup> | ||
|
||
<!-- FsDocs --> | ||
<PropertyGroup> | ||
<FsDocsLicenseLink>https://github.com/fsprojects/Argu/blob/master/LICENSE.md</FsDocsLicenseLink> | ||
<FsDocsReleaseNotesLink>https://github.com/fsprojects/Argu/blob/master/RELEASE_NOTES.md</FsDocsReleaseNotesLink> | ||
</PropertyGroup> | ||
</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
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,16 +1,16 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<OutputType>Exe</OutputType> | ||
<AssemblyName>ls</AssemblyName> | ||
<!-- NOTE required as EXEs by default are treated as packable by the FAKE Release fsx --> | ||
<IsPackable>false</IsPackable> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="Arguments.fs" /> | ||
<Compile Include="Program.fs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Argu\Argu.fsproj" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<OutputType>Exe</OutputType> | ||
<AssemblyName>ls</AssemblyName> | ||
<!-- NOTE required as EXEs by default are treated as packable by the FAKE Release fsx --> | ||
<IsPackable>false</IsPackable> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="Arguments.fs"/> | ||
<Compile Include="Program.fs"/> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Argu\Argu.fsproj"/> | ||
</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,30 +1,31 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<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="..\..\resource\logo.png" Pack="true" PackagePath="" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="FSharp.Core" /> | ||
<PackageReference Include="System.Configuration.ConfigurationManager" /> | ||
<!-- SourceLink etc --> | ||
<PackageReference Include="DotNet.ReproducibleBuilds" PrivateAssets="All" /> | ||
</ItemGroup> | ||
<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="..\..\resource\logo.png" Pack="true" PackagePath=""/> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<!-- SourceLink etc --> | ||
<PackageReference Include="DotNet.ReproducibleBuilds" PrivateAssets="All"/> | ||
|
||
<PackageReference Include="FSharp.Core"/> | ||
|
||
<PackageReference Include="System.Configuration.ConfigurationManager"/> | ||
</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,19 +1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="Tests.fs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Argu\Argu.fsproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="FSharp.Core" VersionOverride="6.0.7" /> | ||
<PackageReference Include="xunit" /> | ||
<PackageReference Include="xunit.runner.visualstudio" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" /> | ||
<PackageReference Include="Unquote" /> | ||
<PackageReference Include="FsCheck" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="Tests.fs"/> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Argu\Argu.fsproj"/> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="FSharp.Core" VersionOverride="6.0.7"/> | ||
|
||
<PackageReference Include="Microsoft.NET.Test.Sdk"/> | ||
<PackageReference Include="Unquote"/> | ||
<PackageReference Include="xunit"/> | ||
<PackageReference Include="xunit.runner.visualstudio"/> | ||
</ItemGroup> | ||
</Project> |