| 1234567891011121314151617181920212223242526272829 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net9.0</TargetFramework>
- <OutputType>Exe</OutputType>
- <Version>$(ZebusDirectoryVersion)</Version>
- <IsPackable>false</IsPackable>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\Abc.Zebus.Contracts\Abc.Zebus.Contracts.csproj" />
- <ProjectReference Include="..\Abc.Zebus.Directory.Cassandra\Abc.Zebus.Directory.Cassandra.csproj" />
- <ProjectReference Include="..\Abc.Zebus.Directory.RocksDb\Abc.Zebus.Directory.RocksDb.csproj" />
- <ProjectReference Include="..\Abc.Zebus.Directory\Abc.Zebus.Directory.csproj" />
- <ProjectReference Include="..\Abc.Zebus.Log4Net\Abc.Zebus.Log4Net.csproj" />
- <ProjectReference Include="..\Abc.Zebus\Abc.Zebus.csproj" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="System.Configuration.ConfigurationManager" Version="5.0.0" />
- </ItemGroup>
- <ItemGroup>
- <None Update="log4net.config">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|