16 lines
616 B
XML
16 lines
616 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="$(SolutionDir)/Tixl.props" />
|
|
<PropertyGroup>
|
|
<TargetFramework>$(TixlNetCoreFrameworkVersion)</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<RootNamespace>T3.Core.Logging</RootNamespace>
|
|
<Configurations>Debug;Release</Configurations>
|
|
<Platforms>AnyCPU</Platforms>
|
|
<Deterministic>true</Deterministic>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Runtime.Serialization.Formatters" Version="10.0.5" />
|
|
</ItemGroup>
|
|
|
|
</Project> |