-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDirectory.Build.props
31 lines (25 loc) · 1 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
30
31
<Project>
<PropertyGroup>
<LegalAuthors>LuzFaltex Contributors</LegalAuthors>
<Company>LuzFaltex</Company>
<LegalCopyrightHolder>Copyright LuzFaltex © $([System.DateTime]::Now.Year.ToString()). All rights reserved.</LegalCopyrightHolder>
</PropertyGroup>
<!-- NuGet -->
<PropertyGroup>
<RepositoryUrl>https://github.com/LuzFaltex/LuzFaltex.ConCat</RepositoryUrl>
<RepositoryBranch>Main</RepositoryBranch>
<PackageOutputPath>$(SolutionDir)nuget</PackageOutputPath>
<PackageProjectUrl>https://github.com/LuzFaltex/LuzFaltex.ConCat</PackageProjectUrl>
<PackageTags>LuzFaltex;ConCat;Rest;API</PackageTags>
</PropertyGroup>
<PropertyGroup>
<!-- Update Constant to match the target ConCat API version. One version per branch. -->
<DefineConstants>ANY</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<ImplicitUsings>disable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Remora.Sdk" Version="2.1.0" />
</ItemGroup>
</Project>