2016-12-20 13:29:45 -08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2016-12-01 20:10:42 -08:00
|
|
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
2016-10-28 22:04:20 -10:00
|
|
|
|
<PropertyGroup>
|
2017-02-17 00:43:14 -08:00
|
|
|
|
<Version>$(SdkVersion)</Version>
|
2017-01-25 21:19:44 -06:00
|
|
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
2016-11-03 22:12:33 -07:00
|
|
|
|
<AssemblyName>dotnet</AssemblyName>
|
2016-10-28 22:04:20 -10:00
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<AssemblyOriginatorKeyFile>../../tools/Key.snk</AssemblyOriginatorKeyFile>
|
|
|
|
|
<SignAssembly>true</SignAssembly>
|
|
|
|
|
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
|
2017-01-25 21:19:44 -06:00
|
|
|
|
<PackageTargetFallback>$(PackageTargetFallback);dotnet5.4</PackageTargetFallback>
|
2017-03-06 11:57:19 -08:00
|
|
|
|
<RootNamespace>Microsoft.DotNet.Cli</RootNamespace>
|
2016-10-28 22:04:20 -10:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2017-01-06 11:03:38 -06:00
|
|
|
|
<Compile Remove="commands\dotnet-new\**" />
|
|
|
|
|
<Compile Include="commands\dotnet-new\*.cs" />
|
|
|
|
|
<EmbeddedResource Include="commands\dotnet-new\*.zip" />
|
2016-10-28 22:04:20 -10:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2016-11-03 22:12:33 -07:00
|
|
|
|
<ProjectReference Include="../Microsoft.DotNet.Configurer/Microsoft.DotNet.Configurer.csproj" />
|
|
|
|
|
<ProjectReference Include="../Microsoft.DotNet.InternalAbstractions/Microsoft.DotNet.InternalAbstractions.csproj" />
|
|
|
|
|
<ProjectReference Include="../Microsoft.DotNet.Archive/Microsoft.DotNet.Archive.csproj" />
|
|
|
|
|
<ProjectReference Include="../Microsoft.DotNet.Cli.Utils/Microsoft.DotNet.Cli.Utils.csproj" />
|
2016-12-07 11:49:15 -10:00
|
|
|
|
<ProjectReference Include="../Microsoft.DotNet.Cli.Sln.Internal/Microsoft.DotNet.Cli.Sln.Internal.csproj" />
|
2016-10-28 22:04:20 -10:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2017-03-02 19:49:30 -08:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
|
|
|
|
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.3.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.NETCore.App" Version="$(CLI_SharedFrameworkVersion)" />
|
|
|
|
|
<PackageReference Include="System.Diagnostics.TraceSource" Version="4.3.0" />
|
|
|
|
|
<PackageReference Include="System.Diagnostics.TextWriterTraceListener" Version="4.3.0" />
|
|
|
|
|
<PackageReference Include="System.Runtime.Serialization.Primitives" Version="4.3.0" />
|
|
|
|
|
<PackageReference Include="System.Private.DataContractSerialization" Version="4.3.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Win32.Registry" Version="4.3.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Build" Version="$(CLI_MSBuild_Version)" />
|
|
|
|
|
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="$(PlatformAbstractionsVersion)" />
|
2017-04-05 13:50:12 -07:00
|
|
|
|
<PackageReference Include="Microsoft.DotNet.Cli.CommandLine" Version="$(CliCommandLineParserVersion)" />
|
2017-04-23 16:33:07 -07:00
|
|
|
|
<PackageReference Include="Microsoft.DotNet.Tools.MigrateCommand" Version="0.1.0-alpha-2123" />
|
2017-01-10 22:58:30 -08:00
|
|
|
|
<PackageReference Include="Microsoft.TemplateEngine.Abstractions" Version="$(TemplateEngineVersion)" />
|
2017-01-06 14:48:27 -08:00
|
|
|
|
<PackageReference Include="Microsoft.TemplateEngine.Cli" Version="$(TemplateEngineVersion)" />
|
|
|
|
|
<PackageReference Include="Microsoft.TemplateEngine.Orchestrator.RunnableProjects" Version="$(TemplateEngineVersion)" />
|
2017-01-10 22:58:30 -08:00
|
|
|
|
<PackageReference Include="Microsoft.TemplateEngine.Utils" Version="$(TemplateEngineVersion)" />
|
2016-10-28 22:04:20 -10:00
|
|
|
|
</ItemGroup>
|
2017-03-06 11:57:19 -08:00
|
|
|
|
<ItemGroup>
|
2017-04-23 16:33:07 -07:00
|
|
|
|
<Folder Include="commands\dotnet-migrate\xlf" />
|
2017-03-06 11:57:19 -08:00
|
|
|
|
<Folder Include="dotnet-complete\commands\" />
|
|
|
|
|
</ItemGroup>
|
2017-04-23 16:33:07 -07:00
|
|
|
|
</Project>
|