-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathMeadow.Core.csproj
58 lines (48 loc) · 1.98 KB
/
Meadow.Core.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
53
54
55
56
57
58
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild Condition="'$(Configuration)' == 'Release'">true</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<DefineConstants>$(DefineConstants);ZERO_BYTE_CHECKS</DefineConstants>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\WordLists\*.txt" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Cryptography.KeyDerivation" Version="2.1.1" />
<PackageReference Include="Microsoft.CSharp" Version="4.5.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.1.1" />
<PackageReference Include="Microsoft.Extensions.Http" Version="2.1.1" />
<PackageReference Include="Portable.BouncyCastle" Version="1.8.4" />
<PackageReference Include="Secp256k1.Net" Version="0.1.52" />
<PackageReference Include="SolcNet" Version="1.1.107" />
<PackageReference Include="System.Buffers" Version="4.5.0" />
<PackageReference Include="System.Memory" Version="4.5.1" />
</ItemGroup>
<ItemGroup>
<None Update="EthTypes\IntegerTypes.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>IntegerTypes.cs</LastGenOutput>
</None>
<None Update="EthTypes\FixedN.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>FixedN.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
</ItemGroup>
<ItemGroup>
<Compile Update="EthTypes\FixedN.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>FixedN.tt</DependentUpon>
</Compile>
<Compile Update="EthTypes\IntegerTypes.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>IntegerTypes.tt</DependentUpon>
</Compile>
</ItemGroup>
</Project>