-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
47 lines (39 loc) · 1.93 KB
/
Directory.Build.props
File metadata and controls
47 lines (39 loc) · 1.93 KB
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Authors>The Neo Project</Authors>
<Company>The Neo Project</Company>
<Copyright>2015-2021 The Neo Project</Copyright>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<LangVersion>10</LangVersion>
<Nullable>enable</Nullable>
<PackageIcon>ngdsea.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/ngdenterprise/neo-test</PackageProjectUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/ngdenterprise/neo-test</RepositoryUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(CI)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup>
<!-- <BlockchainToolkitLibraryVersion>3.4.13</BlockchainToolkitLibraryVersion> -->
<BlockchainToolkitLibraryVersion>local</BlockchainToolkitLibraryVersion>
<!-- <BlockchainToolkitLibraryVersion>local</BlockchainToolkitLibraryVersion> -->
<!-- <BlockchainToolkitLibraryLocalPath>..\..\..\lib-bctk</BlockchainToolkitLibraryLocalPath> -->
<BlockchainToolkitLibraryLocalPath>../../../neo-blockchaintoolkit-library/</BlockchainToolkitLibraryLocalPath>
<NeoVersion>3.4.0</NeoVersion>
<NeoMonorepoPath>..\..\..\..\official\3neo-monorepo</NeoMonorepoPath>
</PropertyGroup>
<ItemGroup>
<None Include="../ngdsea.png" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>
<Import Project="../Directory.Build.props" />
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>
</ItemGroup>
</Project>