-
Notifications
You must be signed in to change notification settings - Fork 10
/
EasyPipes.csproj
63 lines (56 loc) · 2.56 KB
/
EasyPipes.csproj
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>SeaEagle1</Authors>
<Company>OS</Company>
<Description>Lightweight IPC library based on NamedPipes or TCP. Provides easy-to-use proxy interface for remote calls. Built on .NET Standard 2.0 for compatability with most modern .NET versions.</Description>
<PackageLicenseUrl></PackageLicenseUrl>
<Copyright>(C) 2018-2021 - Contributors</Copyright>
<PackageProjectUrl>https://github.com/seaeagle1/EasyPipes</PackageProjectUrl>
<RepositoryUrl>https://github.com/seaeagle1/EasyPipes.git</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageReleaseNotes></PackageReleaseNotes>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<FileVersion>1.4.0.0</FileVersion>
<Version>1.4.0</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseExpression>MPL-2.0</PackageLicenseExpression>
<DelaySign>false</DelaySign>
</PropertyGroup>
<PropertyGroup Condition="'$(MSBuildRuntimeType)'!='Core'">
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>EasyPipesKey.pfx</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Rijndael256\Rijndael256.Tests\**" />
<Compile Remove="Rijndael256\Rijndael256\bin\**" />
<Compile Remove="Rijndael256\Rijndael256\obj\**" />
<Compile Remove="UnitTests\**" />
<EmbeddedResource Remove="Rijndael256\Rijndael256.Tests\**" />
<EmbeddedResource Remove="Rijndael256\Rijndael256\bin\**" />
<EmbeddedResource Remove="Rijndael256\Rijndael256\obj\**" />
<EmbeddedResource Remove="UnitTests\**" />
<None Remove="Rijndael256\Rijndael256.Tests\**" />
<None Remove="Rijndael256\Rijndael256\bin\**" />
<None Remove="Rijndael256\Rijndael256\obj\**" />
<None Remove="UnitTests\**" />
</ItemGroup>
<ItemGroup>
<None Remove=".git" />
<None Remove=".gitignore" />
<None Remove="Rijndael256\.git" />
<None Remove="Rijndael256\.gitignore" />
<None Remove="Rijndael256\.travis.yml" />
<None Remove="Rijndael256\LICENSE" />
<None Remove="Rijndael256\README.md" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Castle.Core" Version="4.3.1" />
<PackageReference Include="System.Net.Primitives" Version="4.3.0" />
<PackageReference Include="System.Net.Sockets" Version="4.3.0" />
</ItemGroup>
</Project>