-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
21 lines (20 loc) · 1.01 KB
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project>
<PropertyGroup>
<!-- summary is not migrated from project.json, but you can use the <Description> property for that if needed. -->
<PackageTags>f#, fsharp</PackageTags>
<PackageProjectUrl>https://github.com/kirillgarbar/Arithm</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/kirillgarbar/Arithm/blob/master/LICENSE.md</PackageLicenseUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<RepositoryType>git</RepositoryType>
<Authors>kirillgarbar</Authors>
<RepositoryUrl>https://github.com/kirillgarbar/Arithm</RepositoryUrl>
<!-- owners is not supported in MSBuild -->
</PropertyGroup>
<Target Name="FSharpLint" AfterTargets="BeforeBuild">
<Exec
Command="dotnet fsharplint -f msbuild lint --lint-config $(MSBuildThisFileDirectory)/fsharplint.json $(MSBuildProjectFullPath)"
ConsoleToMsBuild="true"
IgnoreExitCode="false"
/>
</Target>
</Project>