Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions eng/Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
<DependencyPackageProjects Include="$(RepoRoot)src\referencePackages\src\**\System.Runtime.4.3.1.csproj" />
<DependencyPackageProjects Include="$(RepoRoot)src\referencePackages\src\**\System.Text.RegularExpressions.4.3.1.csproj" />

<DependencyPackageProjects Include="$(RepoRoot)src\referencePackages\src\**\System.Text.Encoding.CodePages.4.5.1.csproj" />
<DependencyPackageProjects Include="$(RepoRoot)src\referencePackages\src\**\Microsoft.CodeAnalysis.Common.4.0.1.csproj" />
<DependencyPackageProjects Include="$(RepoRoot)src\referencePackages\src\**\Microsoft.CodeAnalysis.CSharp.4.0.1.csproj" />

<TargetingPackageProject Include="$(RepoRoot)src\targetPacks\ILsrc\**\*.csproj" />
<ProjectToBuild Include="@(TargetingPackageProject)" />

Expand Down
4 changes: 4 additions & 0 deletions src/referencePackages/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@
<!-- Don't warn on CS3001, CS3002, CS3003, CS3008, CS3009 - Type is not CLS-compliant. -->
<NoWarn>$(NoWarn);NU1603,NU1605,NU5125,CS0109,CS0169,CS0618,CS0649,CS3001,CS3002,CS3003,CS3008,CS3009</NoWarn>

<!-- Don't warn on RS1025 - Configure generated code analysis -->
<!-- Don't warn on RS1026 - Enable concurrent execution -->
<NoWarn>$(NoWarn);RS1025;RS1026</NoWarn>

<!--
Disable CS0108: generated source code is missing "new" when hiding inherited member.
src/microsoft.build.tasks.core/15.1.1012/lib/net46/Microsoft.Build.Tasks.Core.cs(80,60): error CS0108: 'AppDomainIsolatedTaskExtension.Log' hides inherited member 'AppDomainIsolatedTask.Log'. Use the new keyword if hiding was intended.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))/dir.props" />

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<NuspecFile>$(ArtifactsBinDir)microsoft.codeanalysis.common/4.0.1/microsoft.codeanalysis.common.nuspec</NuspecFile>
<StrongNameKeyId>MicrosoftShared</StrongNameKeyId>
</PropertyGroup>

<PropertyGroup>
<OutputPath>$(ArtifactsBinDir)microsoft.codeanalysis.common/4.0.1/ref/</OutputPath>
<IntermediateOutputPath>$(ArtifactsObjDir)microsoft.codeanalysis.common/4.0.1</IntermediateOutputPath>
</PropertyGroup>

<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<OutputPath>$(ArtifactsBinDir)microsoft.codeanalysis.common/4.0.1/lib/</OutputPath>
</PropertyGroup>

<ItemGroup>
<Compile Include="**/ref/$(TargetFramework)/*.cs" />
<Compile Include="**/lib/$(TargetFramework)/*.cs" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="NETStandard.Library" Version="$(NETStandardImplicitPackageVersion)" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.2" />
<PackageReference Include="System.Collections.Immutable" Version="5.0.0" />
<PackageReference Include="System.Memory" Version="4.5.4" />
<PackageReference Include="System.Reflection.Metadata" Version="5.0.0" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="5.0.0" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.5.1" />
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
</ItemGroup>

</Project>

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Microsoft.CodeAnalysis.Common</id>
<version>4.0.1</version>
<authors>Microsoft</authors>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<license type="expression">MIT</license>
<licenseUrl>https://licenses.nuget.org/MIT</licenseUrl>
<projectUrl>https://github.com/dotnet/roslyn</projectUrl>
<description>A shared package used by the Microsoft .NET Compiler Platform ("Roslyn").
Do not install this package manually, it will be added as a prerequisite by other packages that require it.

More details at https://aka.ms/roslyn-packages
This package was built from the source at https://github.com/dotnet/roslyn/commit/b3e69109341a1017423af7981b8b84b646f5bcce.</description>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<tags>Roslyn CodeAnalysis Compiler CSharp VB VisualBasic Parser Scanner Lexer Emit CodeGeneration Metadata IL Compilation Scripting Syntax Semantics</tags>
<serviceable>true</serviceable>
<repository type="git" url="https://github.com/dotnet/roslyn" commit="b3e69109341a1017423af7981b8b84b646f5bcce" />
<dependencies>
<group targetFramework=".NETStandard2.0">
<dependency id="Microsoft.CodeAnalysis.Analyzers" version="3.3.2" />
<dependency id="System.Collections.Immutable" version="5.0.0" exclude="Build,Analyzers" />
<dependency id="System.Memory" version="4.5.4" exclude="Build,Analyzers" />
<dependency id="System.Reflection.Metadata" version="5.0.0" exclude="Build,Analyzers" />
<dependency id="System.Runtime.CompilerServices.Unsafe" version="5.0.0" exclude="Build,Analyzers" />
<dependency id="System.Text.Encoding.CodePages" version="4.5.1" exclude="Build,Analyzers" />
<dependency id="System.Threading.Tasks.Extensions" version="4.5.4" exclude="Build,Analyzers" />
</group>
</dependencies>
</metadata>
</package>
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<Project>

<Import Project="$([MSBuild]::GetPathOfFileAbove(Directory.Build.props, $(MSBuildThisFileDirectory)..))" />

<PropertyGroup>
<AssemblyName>Microsoft.CodeAnalysis.Common</AssemblyName>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))/dir.props" />

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<NuspecFile>$(ArtifactsBinDir)microsoft.codeanalysis.csharp/4.0.1/microsoft.codeanalysis.csharp.nuspec</NuspecFile>
<StrongNameKeyId>MicrosoftShared</StrongNameKeyId>
</PropertyGroup>

<PropertyGroup>
<OutputPath>$(ArtifactsBinDir)microsoft.codeanalysis.csharp/4.0.1/ref/</OutputPath>
<IntermediateOutputPath>$(ArtifactsObjDir)microsoft.codeanalysis.csharp/4.0.1</IntermediateOutputPath>
</PropertyGroup>

<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<OutputPath>$(ArtifactsBinDir)microsoft.codeanalysis.csharp/4.0.1/lib/</OutputPath>
</PropertyGroup>

<ItemGroup>
<Compile Include="**/ref/$(TargetFramework)/*.cs" />
<Compile Include="**/lib/$(TargetFramework)/*.cs" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="NETStandard.Library" Version="$(NETStandardImplicitPackageVersion)" />
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="[4.0.1, 4.0.1]" />
</ItemGroup>

</Project>
Loading