Logger.csproj 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{72E16572-FC1F-4A9E-BC96-035417239298}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Log</RootNamespace>
  11. <AssemblyName>Log</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
  15. <RestorePackages>true</RestorePackages>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>..\..\Bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>..\..\Bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="NLog, Version=3.1.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
  36. <SpecificVersion>False</SpecificVersion>
  37. <HintPath>..\..\packages\NLog.3.1.0.0\lib\net45\NLog.dll</HintPath>
  38. </Reference>
  39. <Reference Include="System" />
  40. <Reference Include="System.Core" />
  41. </ItemGroup>
  42. <ItemGroup>
  43. <Compile Include="ALogDecorater.cs" />
  44. <Compile Include="Log.cs" />
  45. <Compile Include="ILog.cs" />
  46. <Compile Include="NLogAdapter.cs" />
  47. <Compile Include="StackInfoDecorater.cs" />
  48. </ItemGroup>
  49. <ItemGroup>
  50. <Folder Include="Properties\" />
  51. </ItemGroup>
  52. <ItemGroup>
  53. <None Include="packages.config" />
  54. </ItemGroup>
  55. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  56. <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
  57. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  58. Other similar extension points exist, see Microsoft.Common.targets.
  59. <Target Name="BeforeBuild">
  60. </Target>
  61. <Target Name="AfterBuild">
  62. </Target>
  63. -->
  64. </Project>