-
Notifications
You must be signed in to change notification settings - Fork 315
Expand file tree
/
Copy pathCSharpFunctionalExtensions.StrongName.csproj
More file actions
38 lines (32 loc) · 1.77 KB
/
Copy pathCSharpFunctionalExtensions.StrongName.csproj
File metadata and controls
38 lines (32 loc) · 1.77 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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="../Common.Build.props"/>
<PropertyGroup>
<PackageId>CSharpFunctionalExtensions.StrongName</PackageId>
<AssemblyOriginatorKeyFile>CSharpFunctionalExtensions.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)'=='netstandard2.0'">
<AssemblyTitle>CSharpFunctionalExtensions (with a strong name) .NET Standard 2.0</AssemblyTitle>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)'=='net8.0'">
<AssemblyTitle>CSharpFunctionalExtensions (with a strong name) .NET 8.0</AssemblyTitle>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)'=='net10.0'">
<AssemblyTitle>CSharpFunctionalExtensions (with a strong name) .NET 10.0</AssemblyTitle>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup Condition="!$(DefineConstants.Contains('NET5_0_OR_GREATER')) and !$(DefineConstants.Contains('NETCORE'))">
<EmbeddedResource Remove="Result\Json\Serialization\**"/>
<None Remove="Result\Json\Serialization\**"/>
<Compile Include="..\CSharpFunctionalExtensions\**\*.cs"
Exclude="..\CSharpFunctionalExtensions\obj\**\*.cs;..\CSharpFunctionalExtensions\Result\Json\Serialization\**"/>
</ItemGroup>
<ItemGroup Condition="$(DefineConstants.Contains('NET5_0_OR_GREATER')) or $(DefineConstants.Contains('NETCORE'))">
<Compile Include="..\CSharpFunctionalExtensions\**\*.cs" Exclude="..\CSharpFunctionalExtensions\obj\**\*.cs"/>
</ItemGroup>
</Project>