-
-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathExceptionless.SampleConsole.csproj
More file actions
30 lines (25 loc) · 1.03 KB
/
Exceptionless.SampleConsole.csproj
File metadata and controls
30 lines (25 loc) · 1.03 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<AssemblyName>Exceptionless.SampleConsole</AssemblyName>
<OutputType>Exe</OutputType>
<DefineConstants>$(DefineConstants);NETSTANDARD;NETSTANDARD2_0</DefineConstants>
<DebugType>portable</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Remove="store\**\*" />
<Compile Include="..\..\test\Exceptionless.Tests\Utility\RandomEventGenerator.cs" Exclude="store\**\*;bin\**;obj\**;**\*.xproj;packages\**" />
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Exceptionless\Exceptionless.csproj" />
<ProjectReference Include="..\..\src\Platforms\Exceptionless.NLog\Exceptionless.NLog.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Exceptionless.DateTimeExtensions" Version="6.0.1" />
<PackageReference Include="Exceptionless.RandomData" Version="2.0.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
</Project>