-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathMonoSerialPort.csproj
44 lines (42 loc) · 1.41 KB
/
MonoSerialPort.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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Backup\**" />
<Compile Remove="ESP32\**" />
<Compile Remove="Test485\**" />
<Compile Remove="Test\**" />
<EmbeddedResource Remove="Backup\**" />
<EmbeddedResource Remove="ESP32\**" />
<EmbeddedResource Remove="Test485\**" />
<EmbeddedResource Remove="Test\**" />
<None Remove="Backup\**" />
<None Remove="ESP32\**" />
<None Remove="Test485\**" />
<None Remove="Test\**" />
</ItemGroup>
<ItemGroup>
<None Remove=".gitattributes" />
<None Remove=".gitignore" />
<None Remove=".travis.yml" />
<None Remove="LICENSE" />
<None Remove="README.md" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Windows.Compatibility" Version="2.0.1" />
<PackageReference Include="Mono.Posix.NETStandard" Version="1.0.0" />
</ItemGroup>
<ItemGroup>
<Compile Update="Port\SerialPort.cs">
<SubType>Component</SubType>
</Compile>
</ItemGroup>
</Project>