Skip to content

Commit 63892b4

Browse files
authored
Add required csproj properties for example projects (#55)
1 parent 36be3e7 commit 63892b4

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

Examples/Horizon/StellarDotnetSdk.Examples.Horizon.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net8.0</TargetFramework>
6-
<ImplicitUsings>enable</ImplicitUsings>
76
<Nullable>enable</Nullable>
7+
<IsPackable>false</IsPackable>
8+
<AssemblyName>StellarDotnetSdk.Examples.Horizon</AssemblyName>
9+
<RootNamespace>StellarDotnetSdk.Examples.Horizon</RootNamespace>
10+
<ImplicitUsings>enable</ImplicitUsings>
11+
<LangVersion>12</LangVersion>
812
</PropertyGroup>
913

1014
<ItemGroup>

Examples/Soroban/StellarDotnetSdk.Examples.Soroban.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net8.0</TargetFramework>
6-
<ImplicitUsings>enable</ImplicitUsings>
76
<Nullable>enable</Nullable>
7+
<IsPackable>false</IsPackable>
8+
<AssemblyName>StellarDotnetSdk.Examples.Soroban</AssemblyName>
9+
<RootNamespace>StellarDotnetSdk.Examples.Soroban</RootNamespace>
10+
<ImplicitUsings>enable</ImplicitUsings>
11+
<LangVersion>12</LangVersion>
812
</PropertyGroup>
913

1014
<ItemGroup>

0 commit comments

Comments
 (0)