forked from Xamla/ROS.NET
-
Notifications
You must be signed in to change notification settings - Fork 2
/
YAMLParser.csproj
45 lines (38 loc) · 1.57 KB
/
YAMLParser.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RuntimeIdentifiers>win10-x64;osx.10.11-x64;ubuntu.16.04-x64</RuntimeIdentifiers>
<ApplicationIcon />
<StartupObject />
<TargetFramework>netcoreapp2.1</TargetFramework>
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<Compile Remove="GenerationGuts.tmp.cs" />
<Compile Remove="TemplateProject\String.cs" />
<Compile Remove="TemplateProject\Time.cs" />
</ItemGroup>
<ItemGroup>
<None Include="TemplateProject\Messages._csproj" />
<None Include="TemplateProject\String.cs" />
<None Include="TemplateProject\Time.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.5" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.2.0" />
<PackageReference Include="NuGet.Client" Version="4.2.0" />
<PackageReference Include="NuGet.Common" Version="4.9.3" />
<PackageReference Include="NuGet.PackageManagement.NetStandard" Version="4.9.2" />
<PackageReference Include="NuGet.Resolver" Version="4.9.3" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Uml.Robotics.Ros.MessageBase\Uml.Robotics.Ros.MessageBase.csproj" />
</ItemGroup>
<ItemGroup>
<None Remove="NuGet.config" />
<Content Include="NuGet.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>