Skip to content

Commit

Permalink
Include examples only if INCLUDE_EXAMPLES is defined
Browse files Browse the repository at this point in the history
  • Loading branch information
jmigueprieto committed Dec 4, 2024
1 parent dcebe39 commit 885f048
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Conductor/conductor-csharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
<PackageReference Include="System.Net.Http.Json" Version="6.0.0" />
<PackageReference Include="RestSharp.Serializers.NewtonsoftJson" Version="110.2.0" />
<PackageReference Include="RestSharp.Serializers.NewtonsoftJson" Version="110.2.0" />
<None Include="/package/Conductor/README.md" Pack="true" PackagePath="/" />
</ItemGroup>
<!-- Include Examples only if INCLUDE_EXAMPLES is defined -->
<ItemGroup Condition="'$(DefineConstants)' == 'INCLUDE_EXAMPLES'">
<Compile Include="Examples\**\*.cs" />
</ItemGroup>
</Project>

0 comments on commit 885f048

Please sign in to comment.