Skip to content

Commit 963bce6

Browse files
committed
Split off RT.CommandLine to make it usable in Core, as well as Lingo, one of its dependencies.
1 parent 28cc0ad commit 963bce6

File tree

4 files changed

+46
-0
lines changed

4 files changed

+46
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netstandard2.0</TargetFramework>
5+
<OutputPath>..\Builds\$(Configuration)-$(TargetFramework)$(RuntimeIdentifier)\</OutputPath>
6+
<IntermediateOutputPath>$(BaseIntermediateOutputPath)\$(Configuration)-$(TargetFramework)$(RuntimeIdentifier)\</IntermediateOutputPath>
7+
<DocumentationFile>$(OutputPath)\$(AssemblyName).xml</DocumentationFile>
8+
9+
<Version>1.0.0.9999</Version>
10+
<Authors>Timwi;rstarkov</Authors>
11+
<Description></Description>
12+
<PackageTags>rt.commandline;command line;parser</PackageTags>
13+
</PropertyGroup>
14+
15+
<ItemGroup>
16+
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
17+
</ItemGroup>
18+
19+
<ItemGroup>
20+
<ProjectReference Include="..\RT.Lingo.Base\RT.Lingo.Base.csproj" />
21+
<ProjectReference Include="..\RT.PostBuild\RT.PostBuild.csproj" />
22+
<ProjectReference Include="..\RT.Util.Core\RT.Util.Core.csproj" />
23+
</ItemGroup>
24+
25+
</Project>
File renamed without changes.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net472</TargetFramework>
5+
<OutputPath>..\..\Builds\$(Configuration)-$(TargetFramework)$(RuntimeIdentifier)\</OutputPath>
6+
<IntermediateOutputPath>$(BaseIntermediateOutputPath)\$(Configuration)-$(TargetFramework)$(RuntimeIdentifier)\</IntermediateOutputPath>
7+
8+
<IsPackable>false</IsPackable>
9+
</PropertyGroup>
10+
11+
<ItemGroup>
12+
<PackageReference Include="nunit" Version="3.11.0" />
13+
<PackageReference Include="NUnit3TestAdapter" Version="3.11.0" />
14+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
15+
</ItemGroup>
16+
17+
<ItemGroup>
18+
<ProjectReference Include="..\..\RT.CommandLine\RT.CommandLine.csproj" />
19+
</ItemGroup>
20+
21+
</Project>

0 commit comments

Comments
 (0)