-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnyCache.Serialization.csproj
More file actions
49 lines (42 loc) · 1.96 KB
/
AnyCache.Serialization.csproj
File metadata and controls
49 lines (42 loc) · 1.96 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 Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Amir Arayeshi</Authors>
<Company>InfoTeach Bridge</Company>
<RepositoryUrl>https://github.com/InfoTechBridge/AnyCache</RepositoryUrl>
<PackageProjectUrl>https://github.com/InfoTechBridge/AnyCache</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/InfoTechBridge/AnyCache/License</PackageLicenseUrl>
<PackageTags>Cache, dotnet, dotnetcore, Xamarin, Serialization</PackageTags>
<Description>AnyCache .Net and .Net Core caching serialization.</Description>
<Copyright>2018 InfoTechbridge</Copyright>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<Version>1.0.1</Version>
</PropertyGroup>
<!-- common NuGet package refs that affect all projects -->
<!-- .NET Standard 2.0 references, compilation flags and build options -->
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0'">
<DefineConstants>NETCORE;NETSTANDARD;NETSTANDARD2_0</DefineConstants>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0'">
</ItemGroup>
<!-- .NET 4.5 references, compilation flags and build options -->
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Configuration" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MsgPack.Cli" Version="1.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AnyCache.Core\AnyCache.Core.csproj" />
</ItemGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'net45'">
<DefineConstants>NET45;NETFULL</DefineConstants>
</PropertyGroup>
</Project>