forked from postsharp/PostSharp.Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClientExample.csproj
More file actions
49 lines (38 loc) · 2.07 KB
/
Copy pathClientExample.csproj
File metadata and controls
49 lines (38 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<Project>
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<LangVersion>7.3</LangVersion>
<Platforms>AnyCPU</Platforms>
<Configurations>Debug;Release;Development</Configurations>
<PostSharpBuild Condition="'$(Configuration)'=='Development'">Debug</PostSharpBuild>
</PropertyGroup>
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
<ItemGroup>
<PackageReference Include="Serilog.Extensions.Logging" Version="2.0.2" />
<PackageReference Include="Serilog.Sinks.Async" Version="1.3.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" />
<PackageReference Include="Serilog.Sinks.Http" Version="5.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)'!='Development'">
<PackageReference Include="PostSharp.Patterns.Diagnostics" Version="6.2.7" />
<PackageReference Include="PostSharp.Patterns.Diagnostics.Serilog" Version="6.2.7" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)'=='Development'">
<Reference Include="PostSharp">
<HintPath>C:\src\postsharp\Build\bin\bin.Debug\netstandard2.0\PostSharp.dll</HintPath>
</Reference>
<Reference Include="PostSharp.Patterns.Common">
<HintPath>C:\src\postsharp\Patterns\Build\bin\Debug\netstandard2.0\PostSharp.Patterns.Common.dll</HintPath>
</Reference>
<Reference Include="PostSharp.Patterns.Diagnostics">
<HintPath>C:\src\postsharp\Patterns\Build\bin\Debug\netstandard2.0\PostSharp.Patterns.Diagnostics.dll</HintPath>
</Reference>
<Reference Include="PostSharp.Patterns.Diagnostics.Backends.Serilog">
<HintPath>C:\src\postsharp\Patterns\Build\bin\Debug\netstandard2.0\PostSharp.Patterns.Diagnostics.Backends.Serilog.dll</HintPath>
</Reference>
<PostSharpAddIn Include="C:\src\postsharp\Patterns\Build\bin\Debug\PostSharp.Patterns.Common.Weaver.dll" />
</ItemGroup>
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
<Import Project="C:\src\postsharp\Build\bin\PostSharp.targets" Condition="'$(Configuration)'=='Development'" />
</Project>