-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
26 lines (22 loc) · 951 Bytes
/
Directory.Build.props
File metadata and controls
26 lines (22 loc) · 951 Bytes
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
<Project>
<PropertyGroup>
<LangVersion>13.0</LangVersion>
<PlatformTarget>AnyCPU</PlatformTarget>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<PropertyGroup>
<PackageVersion>99.99.99</PackageVersion> <!-- To be replaced by the CI pipeline -->
<Authors>navidata.io</Authors>
<Company>navidata.io</Company>
<Copyright>Copyright © navidata.io Corp 2024. All rights reserved.</Copyright>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/FabricTools/fabric-items.git</RepositoryUrl>
<PackageProjectUrl>https://github.com/FabricTools</PackageProjectUrl>
<PackageLicenseExpression>LGPL-3.0-only</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="navidataIO.Utils" PrivateAssets="All"/>
<Using Include="navidataIO.Utils" />
</ItemGroup>
</Project>