-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathDirectory.Build.props
51 lines (43 loc) · 1.85 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<IsAotCompatible>false</IsAotCompatible>
<IsPackable>false</IsPackable>
<Version>0.7.1</Version>
<Authors>surrealdb</Authors>
<Company>SurrealDB</Company>
<Copyright>Copyright © SurrealDB Ltd</Copyright>
</PropertyGroup>
<PropertyGroup>
<EnablePackageValidation>true</EnablePackageValidation>
<PackageProjectUrl>https://github.com/surrealdb/surrealdb.net</PackageProjectUrl>
<RepositoryUrl>https://github.com/surrealdb/surrealdb.net</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>icon.png</PackageIcon>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CSharpier.MsBuild">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="DotNet.ReproducibleBuilds">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="..\LICENSE" Pack="true" PackagePath="\" Visible="false" />
<None Include="..\img\icon.png" Pack="true" PackagePath="\" Visible="false" />
</ItemGroup>
<!-- Used to enable build & tests for embedded modes (memory, rocksdb, surrealkv) -->
<PropertyGroup Label="Constants" Condition="true">
<DefineConstants>EMBEDDED_MODE</DefineConstants>
</PropertyGroup>
</Project>