| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <Project>
- <PropertyGroup>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- <WarningLevel>4</WarningLevel>
- <LangVersion>9.0</LangVersion>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <Prefer32Bit>false</Prefer32Bit>
- <DefaultItemExcludes>$(DefaultItemExcludes);*.DotSettings;*.ncrunchproject</DefaultItemExcludes>
- <DebugType>embedded</DebugType>
- <Deterministic>true</Deterministic>
- <Nullable>enable</Nullable>
- <PublishRepositoryUrl>true</PublishRepositoryUrl>
- <EmbedUntrackedSources>true</EmbedUntrackedSources>
- <ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' != ''">true</ContinuousIntegrationBuild>
- </PropertyGroup>
- <PropertyGroup>
- <ZebusVersion>3.13.3</ZebusVersion>
- <ZebusContractsVersion>3.0.0</ZebusContractsVersion>
- <ZebusDirectoryVersion>$(ZebusVersion)</ZebusDirectoryVersion>
- <ZebusPersistenceVersion>$(ZebusVersion)</ZebusPersistenceVersion>
- <ZebusTestingVersion>$(ZebusVersion)</ZebusTestingVersion>
- </PropertyGroup>
- <PropertyGroup>
- <Version>$(ZebusVersion)</Version>
- <Authors>ABC arbitrage</Authors>
- <Description>A lightweight Peer to Peer Service Bus</Description>
- <PackageProjectUrl>https://github.com/Abc-Arbitrage/Zebus</PackageProjectUrl>
- <PackageLicenseExpression>MIT</PackageLicenseExpression>
- <Copyright>Copyright © ABC arbitrage $([System.DateTime]::Now.ToString('yyyy'))</Copyright>
- <PackageOutputPath>$(MSBuildThisFileDirectory)..\output</PackageOutputPath>
- <PackageReadmeFile>README.md</PackageReadmeFile>
- </PropertyGroup>
- <ItemGroup>
- <None Include="$(MSBuildThisFileDirectory)NuGetReadme.md" Pack="true" PackagePath="/README.md" Visible="false" />
- </ItemGroup>
- <PropertyGroup Condition="'$(NCrunch)' == '1'">
- <EnableSourceLink>false</EnableSourceLink>
- <EnableSourceControlManagerQueries>false</EnableSourceControlManagerQueries>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="JetBrains.Annotations" Version="2021.3.0" PrivateAssets="all" />
- <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="all" />
- </ItemGroup>
- </Project>
|