-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathEosSharp.Core.csproj
More file actions
39 lines (33 loc) · 1.02 KB
/
EosSharp.Core.csproj
File metadata and controls
39 lines (33 loc) · 1.02 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Cryptography.ECDSA.Secp256K1" Version="1.1.2" />
</ItemGroup>
<ItemGroup>
<Compile Update="Api\v1\EosApi.cs">
<DependentUpon>EosApi.tt</DependentUpon>
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
</Compile>
<Compile Update="Api\v1\EosTypes.cs">
<DependentUpon>EosTypes.tt</DependentUpon>
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="Api\v1\EosApi.tt">
<LastGenOutput>EosApi.cs</LastGenOutput>
<Generator>TextTemplatingFileGenerator</Generator>
</None>
<None Update="Api\v1\EosTypes.tt">
<LastGenOutput>EosTypes.cs</LastGenOutput>
<Generator>TextTemplatingFileGenerator</Generator>
</None>
</ItemGroup>
<ItemGroup>
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
</ItemGroup>
</Project>