Skip to content

Commit

Permalink
fix(sdk): Add csproj files
Browse files Browse the repository at this point in the history
  • Loading branch information
gldeng committed Sep 3, 2024
1 parent 0a3227f commit bf028e0
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/AElf.Sdk.CSharp.Internal/AElf.Sdk.CSharp.Internal.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\common.props" />

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<PackageId>AElf.Sdk.CSharp.Internal</PackageId>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<LangVersion>latest</LangVersion>
<Description>Types for the C# smart contract SDK.</Description>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Rebex.Elliptic.Ed25519" Version="1.2.1" >
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\AElf.Sdk.CSharp.Spec\AElf.Sdk.CSharp.Spec.csproj" />
</ItemGroup>

</Project>
9 changes: 9 additions & 0 deletions src/AElf.Sdk.CSharp.Spec/AElf.Sdk.CSharp.Spec.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

</Project>

0 comments on commit bf028e0

Please sign in to comment.