-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMenees.Common.csproj
More file actions
39 lines (33 loc) · 1.41 KB
/
Menees.Common.csproj
File metadata and controls
39 lines (33 loc) · 1.41 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;$(MeneesTargetNetCoreBase);$(MeneesTargetNetFramework)</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<RootNamespace>Menees</RootNamespace>
<Description>Helpers for files, text, XML, logging, exceptions, etc.</Description>
<!-- Disable IDE0079 (Remove unnecessary suppressions) warning because we have suppressions required only by Framework or Core. -->
<NoWarn>IDE0079</NoWarn>
</PropertyGroup>
<Choose>
<When Condition=" '$(TargetFramework)' == '$(MeneesTargetNetFramework)' ">
<ItemGroup>
<Compile Remove="ApplicationInfo.Core.cs" />
<None Include="ApplicationInfo.Core.cs" />
<Compile Remove="TextUtility.Core.cs" />
<None Include="TextUtility.Core.cs" />
<!-- This includes the Entity Framework's PluralizationService. -->
<Reference Include="System.Data.Entity.Design" />
<Reference Include="System.Net.Http" />
</ItemGroup>
</When>
<Otherwise>
<ItemGroup>
<Compile Remove="ApplicationInfo.Framework.cs" />
<None Include="ApplicationInfo.Framework.cs" />
<Compile Remove="TextUtility.Framework.cs" />
<None Include="TextUtility.Framework.cs" />
<PackageReference Include="System.Security.Principal.Windows" Version="5.0.0" />
</ItemGroup>
</Otherwise>
</Choose>
</Project>