91 lines
4.4 KiB
XML
Executable file
91 lines
4.4 KiB
XML
Executable file
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" />
|
|
|
|
<PropertyGroup>
|
|
<VersionPrefix>1.0.0-preview4</VersionPrefix>
|
|
<TargetFramework>netcoreapp1.0</TargetFramework>
|
|
<AssemblyName>dotnet</AssemblyName>
|
|
<OutputType>Exe</OutputType>
|
|
<AssemblyOriginatorKeyFile>../../tools/Key.snk</AssemblyOriginatorKeyFile>
|
|
<SignAssembly>true</SignAssembly>
|
|
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
|
|
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">$(PackageTargetFallback);dotnet5.4</PackageTargetFallback>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="**\*.cs" Exclude="commands\dotnet-new\CSharp_Console\**;commands\dotnet-new\CSharp_Lib\**;commands\dotnet-new\CSharp_Mstest\**;commands\dotnet-new\CSharp_Web\**;commands\dotnet-new\CSharp_Xunittest\**;bin\**;obj\**;**\*.xproj;packages\**" />
|
|
<EmbeddedResource Include="**\*.resx" Exclude="bin\**;obj\**;**\*.xproj;packages\**" />
|
|
<EmbeddedResource Include="commands\dotnet-new\CSharp_Console.zip;commands\dotnet-new\CSharp_Lib.zip;commands\dotnet-new\CSharp_Mstest.zip;commands\dotnet-new\CSharp_Xunittest.zip;commands\dotnet-new\CSharp_Web.zip;compiler\resources\**\*" Exclude="bin\**;obj\**;**\*.xproj;packages\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="../Microsoft.DotNet.Configurer/Microsoft.DotNet.Configurer.csproj" />
|
|
<ProjectReference Include="../Microsoft.DotNet.ProjectJsonMigration/Microsoft.DotNet.ProjectJsonMigration.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" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Sdk">
|
|
<Version>1.0.0-alpha-20161104-2</Version>
|
|
<PrivateAssets>All</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Newtonsoft.Json">
|
|
<Version>9.0.1</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="System.Text.Encoding.CodePages">
|
|
<Version>4.0.1</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="System.Diagnostics.FileVersionInfo">
|
|
<Version>4.0.0</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.ApplicationInsights">
|
|
<Version>2.0.0</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.NETCore.App">
|
|
<Version>1.0.1</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="System.Diagnostics.TraceSource">
|
|
<Version>4.0.0</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="System.Diagnostics.TextWriterTraceListener">
|
|
<Version>4.0.0</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="System.Resources.Writer">
|
|
<Version>4.0.0</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="System.Runtime.Serialization.Primitives">
|
|
<Version>4.1.1</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="System.Private.DataContractSerialization">
|
|
<Version>4.1.1</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="System.Text.RegularExpressions">
|
|
<Version>4.1.0</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.Win32.Registry">
|
|
<Version>4.0.0</Version>
|
|
<IncludeAssets>Analyzers;Build;ContentFiles;Native;Runtime</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.Build">
|
|
<Version>15.1.0-preview-000370-00</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp">
|
|
<Version>2.0.0-beta6-60922-08</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions">
|
|
<Version>1.0.1-beta-000933</Version>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">
|
|
<DefineConstants>$(DefineConstants);NETCOREAPP1_0</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
</Project>
|