-
Notifications
You must be signed in to change notification settings - Fork 5
/
Directory.Build.props
29 lines (24 loc) · 1.04 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
22
23
24
25
26
27
28
29
<Project>
<PropertyGroup>
<LegalAuthor>Jarl Gullberg</LegalAuthor>
<LegalEmail>[email protected]</LegalEmail>
</PropertyGroup>
<PropertyGroup>
<SolutionDir>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)/))</SolutionDir>
</PropertyGroup>
<!-- NuGet-related properties -->
<PropertyGroup>
<RepositoryBranch>main</RepositoryBranch>
<RepositoryUrl>https://github.com/Remora/Remora.Results</RepositoryUrl>
<PackageProjectUrl>https://github.com/Remora/Remora.Results</PackageProjectUrl>
<PackageOutputPath>$(SolutionDir)/nuget</PackageOutputPath>
<PackageTags>remora;monad;results</PackageTags>
</PropertyGroup>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<!-- AOT-related properties -->
<PropertyGroup Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net7.0'))">
<IsAotCompatible>true</IsAotCompatible>
</PropertyGroup>
</Project>