mirror of
https://github.com/Smaug123/WoofWare.Whippet
synced 2025-10-13 19:58:40 +00:00
Initial import of Fantomas client library (#6)
Some checks failed
.NET / build (Debug) (push) Has been cancelled
.NET / build (Release) (push) Has been cancelled
.NET / analyzers (push) Has been cancelled
.NET / build-nix (push) Has been cancelled
.NET / check-dotnet-format (push) Has been cancelled
.NET / check-nix-format (push) Has been cancelled
.NET / Check links (push) Has been cancelled
.NET / Check flake (push) Has been cancelled
.NET / nuget-pack (push) Has been cancelled
.NET / expected-pack (push) Has been cancelled
.NET / all-required-checks-complete (push) Has been cancelled
Some checks failed
.NET / build (Debug) (push) Has been cancelled
.NET / build (Release) (push) Has been cancelled
.NET / analyzers (push) Has been cancelled
.NET / build-nix (push) Has been cancelled
.NET / check-dotnet-format (push) Has been cancelled
.NET / check-nix-format (push) Has been cancelled
.NET / Check links (push) Has been cancelled
.NET / Check flake (push) Has been cancelled
.NET / nuget-pack (push) Has been cancelled
.NET / expected-pack (push) Has been cancelled
.NET / all-required-checks-complete (push) Has been cancelled
This commit is contained in:
65
WoofWare.Whippet.Fantomas/WoofWare.Whippet.Fantomas.fsproj
Normal file
65
WoofWare.Whippet.Fantomas/WoofWare.Whippet.Fantomas.fsproj
Normal file
@@ -0,0 +1,65 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard2.1</TargetFramework>
|
||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||
<Authors>Patrick Stevens</Authors>
|
||||
<Copyright>Copyright (c) Patrick Stevens 2024</Copyright>
|
||||
<Description>Helpers for accessing Fantomas syntax trees.</Description>
|
||||
<RepositoryType>git</RepositoryType>
|
||||
<RepositoryUrl>https://github.com/Smaug123/WoofWare.Whippet</RepositoryUrl>
|
||||
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||
<PackageTags>fsharp;fantomas</PackageTags>
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<WarnOn>FS3559</WarnOn>
|
||||
<PackageId>WoofWare.Whippet.Fantomas</PackageId>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="Primitives.fs" />
|
||||
<Compile Include="SynAttributes.fs" />
|
||||
<Compile Include="SynConst.fs" />
|
||||
<Compile Include="SynArgInfo.fs" />
|
||||
<Compile Include="SynValInfo.fs" />
|
||||
<Compile Include="PreXmlDoc.fs" />
|
||||
<Compile Include="Ident.fs" />
|
||||
<Compile Include="SynSimplePat.fs" />
|
||||
<Compile Include="SynSimplePats.fs" />
|
||||
<Compile Include="SynIdent.fs" />
|
||||
<Compile Include="SynLongIdent.fs" />
|
||||
<Compile Include="SynExprLetOrUseTrivia.fs" />
|
||||
<Compile Include="SynArgPats.fs" />
|
||||
<Compile Include="SynPat.fs" />
|
||||
<Compile Include="SynBinding.fs" />
|
||||
<Compile Include="SynType.fs" />
|
||||
<Compile Include="SynMatchClause.fs" />
|
||||
<Compile Include="CompExpr.fs" />
|
||||
<Compile Include="SynExpr.fs" />
|
||||
<Compile Include="SynField.fs" />
|
||||
<Compile Include="SynUnionCase.fs" />
|
||||
<Compile Include="SynTypeDefnRepr.fs" />
|
||||
<Compile Include="SynTypeDefn.fs" />
|
||||
<Compile Include="SynComponentInfo.fs" />
|
||||
<Compile Include="SynMemberDefn.fs" />
|
||||
<Compile Include="SynAttribute.fs" />
|
||||
<Compile Include="SynModuleDecl.fs" />
|
||||
<Compile Include="SynModuleOrNamespace.fs" />
|
||||
<Compile Include="Ast.fs" />
|
||||
<None Include="README.md">
|
||||
<Pack>True</Pack>
|
||||
<PackagePath>/</PackagePath>
|
||||
<Link>README.md</Link>
|
||||
</None>
|
||||
<None Include="version.json" />
|
||||
<EmbeddedResource Include="SurfaceBaseline.txt" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Update="FSharp.Core" Version="6.0.1"/>
|
||||
<!-- To match Myriad, right now, but once this is published we'll bump to latest -->
|
||||
<PackageReference Include="Fantomas.FCS" Version="6.1.1"/>
|
||||
<PackageReference Include="Fantomas.Core" Version="6.1.1"/>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
Reference in New Issue
Block a user