-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathMindscape.Raygun4Net.NetCore.csproj
More file actions
48 lines (48 loc) · 2.4 KB
/
Mindscape.Raygun4Net.NetCore.csproj
File metadata and controls
48 lines (48 loc) · 2.4 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>Mindscape.Raygun4Net.NetCore</RootNamespace>
<AssemblyName>Mindscape.Raygun4Net.NetCore</AssemblyName>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<TargetFrameworks>netstandard1.6;netstandard2.0</TargetFrameworks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Configurations>Debug;Release;Sign</Configurations>
<Platforms>AnyCPU</Platforms>
</PropertyGroup>
<!-- NuGet Options -->
<PropertyGroup>
<Authors>Raygun</Authors>
<Description>.NetStandard library for targeting .Net Core applications</Description>
<PackageId>Mindscape.Raygun4Net.NetCore</PackageId>
<PackageVersion>6.3.0</PackageVersion>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseUrl>https://github.com/MindscapeHQ/raygun4net/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/MindscapeHQ/raygun4net</PackageProjectUrl>
<PackageIconUrl>https://app.raygun.com/Content/Images/nuget-icon.png</PackageIconUrl>
</PropertyGroup>
<ItemGroup>
<Compile Include="RaygunClient.cs" />
<Compile Include="RaygunSettings.cs" />
<Compile Include="Properties\*.cs" />
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Sign|AnyCPU' ">
<PackageId>Mindscape.Raygun4Net.NetCore.Signed</PackageId>
<AssemblyOriginatorKeyFile>Raygun4Net.NetCore.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<Optimize>true</Optimize>
</PropertyGroup>
<!-- .NET Standard 2.0 references, compilation flags and build options -->
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0'">
<DefineConstants>NETCORE;NETSTANDARD;NETSTANDARD2_0</DefineConstants>
</PropertyGroup>
<!-- .NET Standard 1.6 references, compilation flags and build options -->
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard1.6'">
<DefineConstants>NETCORE;NETSTANDARD;NETSTANDARD1_6</DefineConstants>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.6'">
<PackageReference Include="System.ComponentModel" Version="4.3.0" />
<PackageReference Include="System.Diagnostics.StackTrace" Version="4.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Mindscape.Raygun4Net.NetCore.Common\Mindscape.Raygun4Net.NetCore.Common.csproj" />
</ItemGroup>
</Project>