-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathDirectory.Build.props
16 lines (15 loc) · 952 Bytes
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<Project ToolsVersion="15.0">
<PropertyGroup>
<IsPackable>false</IsPackable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<!-- NuGet Metadata -->
<PropertyGroup>
<Authors>Eirik Tsarpalis</Authors>
<Copyright>Copyright 2018</Copyright>
<Description>A small library for compiling F# code quotations using FSharp.Compiler.Service as a backend. Its primary functionality is transforming quotation trees to untyped ASTs used by the F# compiler. Since code is generated using the F# compiler proper, the end result is fully efficient and optimized.</Description>
<PackageProjectUrl>https://www.github.com/eiriktsarpalis/QuotationCompiler</PackageProjectUrl>
<RepositoryUrl>https://www.github.com/eiriktsarpalis/QuotationCompiler</RepositoryUrl>
<PackageLicenseUrl>https://www.github.com/eiriktsarpalis/QuotationCompiler/blob/master/License.md</PackageLicenseUrl>
</PropertyGroup>
</Project>