-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
25 lines (23 loc) · 1016 Bytes
/
Directory.Build.props
File metadata and controls
25 lines (23 loc) · 1016 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
<Project>
<PropertyGroup>
<Authors>AppCore .NET Contributors</Authors>
<Company>The AppCore .NET project</Company>
<Product>AppCore .NET model validation</Product>
<Copyright>Copyright (c) 2018-2022 the AppCore .NET project</Copyright>
<Version>1.0.0</Version>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/AppCoreNet/Validation</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<!--
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<RestoreLockedMode Condition="'$(CI)' == 'true'">true</RestoreLockedMode>
-->
<DefineConstants>$(DefineConstants);ENABLE_NULLABLE</DefineConstants>
</PropertyGroup>
<Import Project="./build/shared/dotnet/common.props" />
<Import Project="./build/shared/dotnet/netfx.props" />
<Import Project="./build/sources.props" />
<Import Project="./build/dependency-versions.props" />
</Project>