-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathMeadow.Cli.csproj
52 lines (46 loc) · 1.66 KB
/
Meadow.Cli.csproj
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
52
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<PackAsTool>true</PackAsTool>
<ToolCommandName>meadow</ToolCommandName>
<GeneratePackageOnBuild Condition="'$(Configuration)' == 'Release'">true</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<None Include="Meadow.Cli.psd1">
<Pack>true</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include=".\Help\*.md">
<Pack>true</Pack>
<PackagePath>\Help</PackagePath>
</None>
<None Include=".\Help\*.xml">
<Pack>true</Pack>
<PackagePath>\Help</PackagePath>
</None>
<None Include=".\Help\en-US\*.xml">
<Pack>true</Pack>
<PackagePath>\Help\en-US</PackagePath>
</None>
<None Include="\Help\en-US\*.txt">
<Pack>true</Pack>
<PackagePath>\Help\en-US</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<None Include="Help\Meadow.Cli.hwproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ExposedObject" Version="1.3.0" />
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="2.1.0" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="6.1.1" />
<PackageReference Include="Secp256k1.Native" Version="0.1.20" ExcludeAssets="native" />
<PackageReference Include="Secp256k1.Net" Version="0.1.52" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Meadow.SolCodeGen\Meadow.SolCodeGen.csproj" />
<ProjectReference Include="..\Meadow.TestNode\Meadow.TestNode.csproj" />
</ItemGroup>
</Project>