Avalonia.Logging.Serilog.csproj 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard1.1</TargetFramework>
  4. <EnableDefaultCompileItems>False</EnableDefaultCompileItems>
  5. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  6. </PropertyGroup>
  7. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  8. <DebugSymbols>true</DebugSymbols>
  9. <DebugType>full</DebugType>
  10. <Optimize>false</Optimize>
  11. <OutputPath>bin\Debug\</OutputPath>
  12. <DefineConstants>DEBUG;TRACE</DefineConstants>
  13. <ErrorReport>prompt</ErrorReport>
  14. <WarningLevel>4</WarningLevel>
  15. <DocumentationFile>bin\Debug\Avalonia.Logging.Serilog.XML</DocumentationFile>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  18. <DebugType>pdbonly</DebugType>
  19. <Optimize>true</Optimize>
  20. <OutputPath>bin\Release\</OutputPath>
  21. <DefineConstants>TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. <DocumentationFile>bin\Release\Avalonia.Logging.Serilog.XML</DocumentationFile>
  25. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  26. </PropertyGroup>
  27. <ItemGroup>
  28. <Compile Include="SerilogLogger.cs" />
  29. <Compile Include="Properties\AssemblyInfo.cs" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. </ItemGroup>
  33. <ItemGroup>
  34. <ProjectReference Include="..\Avalonia.Base\Avalonia.Base.csproj">
  35. </ProjectReference>
  36. </ItemGroup>
  37. <ItemGroup>
  38. <PackageReference Include="Serilog" Version="2.4.0" />
  39. </ItemGroup>
  40. </Project>