Skip to content

Commit 1c230d0

Browse files
hvitvedtamasvajk
authored andcommitted
C#: Update nuget packages
1 parent 13f7fd8 commit 1c230d0

File tree

10 files changed

+183
-217
lines changed

10 files changed

+183
-217
lines changed

cpp/autobuilder/Semmle.Autobuild.Cpp/Semmle.Autobuild.Cpp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</ItemGroup>
1818

1919
<ItemGroup>
20-
<PackageReference Include="Microsoft.Build" Version="16.9.0" />
20+
<PackageReference Include="Microsoft.Build" Version="16.11.0" />
2121
</ItemGroup>
2222

2323
<ItemGroup>
Lines changed: 21 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,22 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<TargetFramework>net5.0</TargetFramework>
5-
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
6-
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
7-
<Nullable>enable</Nullable>
8-
</PropertyGroup>
9-
10-
<ItemGroup>
11-
<PackageReference Include="System.IO.FileSystem" Version="4.3.0" />
12-
<PackageReference Include="System.IO.FileSystem.Primitives" Version="4.3.0" />
13-
<PackageReference Include="xunit" Version="2.4.1" />
14-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
15-
<PrivateAssets>all</PrivateAssets>
16-
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
17-
</PackageReference>
18-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.1" />
19-
</ItemGroup>
20-
21-
<ItemGroup>
22-
<ProjectReference Include="..\Semmle.Autobuild.CSharp\Semmle.Autobuild.CSharp.csproj" />
23-
<ProjectReference Include="..\Semmle.Autobuild.Shared\Semmle.Autobuild.Shared.csproj" />
24-
</ItemGroup>
25-
</Project>
2+
<PropertyGroup>
3+
<TargetFramework>net5.0</TargetFramework>
4+
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
5+
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
6+
<Nullable>enable</Nullable>
7+
</PropertyGroup>
8+
<ItemGroup>
9+
<PackageReference Include="System.IO.FileSystem" Version="4.3.0"/>
10+
<PackageReference Include="System.IO.FileSystem.Primitives" Version="4.3.0"/>
11+
<PackageReference Include="xunit" Version="2.4.1"/>
12+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
13+
<PrivateAssets>all</PrivateAssets>
14+
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
15+
</PackageReference>
16+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0"/>
17+
</ItemGroup>
18+
<ItemGroup>
19+
<ProjectReference Include="..\Semmle.Autobuild.CSharp\Semmle.Autobuild.CSharp.csproj"/>
20+
<ProjectReference Include="..\Semmle.Autobuild.Shared\Semmle.Autobuild.Shared.csproj"/>
21+
</ItemGroup>
22+
</Project>
Lines changed: 24 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,25 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<TargetFramework>net5.0</TargetFramework>
5-
<AssemblyName>Semmle.Autobuild.CSharp</AssemblyName>
6-
<RootNamespace>Semmle.Autobuild.CSharp</RootNamespace>
7-
<ApplicationIcon />
8-
<OutputType>Exe</OutputType>
9-
<StartupObject />
10-
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
11-
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
12-
<Nullable>enable</Nullable>
13-
</PropertyGroup>
14-
15-
<ItemGroup>
16-
<Folder Include="Properties\" />
17-
</ItemGroup>
18-
19-
<ItemGroup>
20-
<PackageReference Include="Microsoft.Build" Version="16.9.0" />
21-
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
22-
</ItemGroup>
23-
24-
<ItemGroup>
25-
<ProjectReference Include="..\..\extractor\Semmle.Util\Semmle.Util.csproj" />
26-
<ProjectReference Include="..\..\extractor\Semmle.Extraction.CSharp\Semmle.Extraction.CSharp.csproj" />
27-
<ProjectReference Include="..\Semmle.Autobuild.Shared\Semmle.Autobuild.Shared.csproj" />
28-
</ItemGroup>
29-
30-
</Project>
2+
<PropertyGroup>
3+
<TargetFramework>net5.0</TargetFramework>
4+
<AssemblyName>Semmle.Autobuild.CSharp</AssemblyName>
5+
<RootNamespace>Semmle.Autobuild.CSharp</RootNamespace>
6+
<ApplicationIcon/>
7+
<OutputType>Exe</OutputType>
8+
<StartupObject/>
9+
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
10+
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
11+
<Nullable>enable</Nullable>
12+
</PropertyGroup>
13+
<ItemGroup>
14+
<Folder Include="Properties\"/>
15+
</ItemGroup>
16+
<ItemGroup>
17+
<PackageReference Include="Microsoft.Build" Version="16.11.0"/>
18+
<PackageReference Include="Newtonsoft.Json" Version="13.0.1"/>
19+
</ItemGroup>
20+
<ItemGroup>
21+
<ProjectReference Include="..\..\extractor\Semmle.Util\Semmle.Util.csproj"/>
22+
<ProjectReference Include="..\..\extractor\Semmle.Extraction.CSharp\Semmle.Extraction.CSharp.csproj"/>
23+
<ProjectReference Include="..\Semmle.Autobuild.Shared\Semmle.Autobuild.Shared.csproj"/>
24+
</ItemGroup>
25+
</Project>
Lines changed: 18 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,19 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<TargetFramework>net5.0</TargetFramework>
5-
<AssemblyName>Semmle.Autobuild.Shared</AssemblyName>
6-
<RootNamespace>Semmle.Autobuild.Shared</RootNamespace>
7-
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
8-
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
9-
<Nullable>enable</Nullable>
10-
</PropertyGroup>
11-
12-
<ItemGroup>
13-
<Folder Include="Properties\" />
14-
</ItemGroup>
15-
16-
<ItemGroup>
17-
<PackageReference Include="Microsoft.Build" Version="16.9.0" />
18-
</ItemGroup>
19-
20-
<ItemGroup>
21-
<ProjectReference Include="..\..\extractor\Semmle.Util\Semmle.Util.csproj" />
22-
</ItemGroup>
23-
24-
</Project>
2+
<PropertyGroup>
3+
<TargetFramework>net5.0</TargetFramework>
4+
<AssemblyName>Semmle.Autobuild.Shared</AssemblyName>
5+
<RootNamespace>Semmle.Autobuild.Shared</RootNamespace>
6+
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
7+
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
8+
<Nullable>enable</Nullable>
9+
</PropertyGroup>
10+
<ItemGroup>
11+
<Folder Include="Properties\"/>
12+
</ItemGroup>
13+
<ItemGroup>
14+
<PackageReference Include="Microsoft.Build" Version="16.11.0"/>
15+
</ItemGroup>
16+
<ItemGroup>
17+
<ProjectReference Include="..\..\extractor\Semmle.Util\Semmle.Util.csproj"/>
18+
</ItemGroup>
19+
</Project>

csharp/extractor/Semmle.Extraction.CIL/Semmle.Extraction.CIL.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@
2626
<ItemGroup>
2727
<PackageReference Include="Microsoft.DiaSymReader" Version="1.3.0" />
2828
<PackageReference Include="Microsoft.DiaSymReader.Native" Version="1.7.0" />
29-
<PackageReference Include="Microsoft.DiaSymReader.PortablePdb" Version="1.5.0" />
29+
<PackageReference Include="Microsoft.DiaSymReader.PortablePdb" Version="1.6.0"><IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
30+
<PrivateAssets>all</PrivateAssets>
31+
</PackageReference>
3032
</ItemGroup>
3133

3234
</Project>
Lines changed: 28 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,28 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<OutputType>Exe</OutputType>
5-
<TargetFramework>net5.0</TargetFramework>
6-
<AssemblyName>Semmle.Extraction.CSharp.Standalone</AssemblyName>
7-
<RootNamespace>Semmle.Extraction.CSharp.Standalone</RootNamespace>
8-
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
9-
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
10-
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
11-
<WarningsAsErrors />
12-
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
13-
<Nullable>enable</Nullable>
14-
</PropertyGroup>
15-
16-
<ItemGroup>
17-
<ProjectReference Include="..\Semmle.Extraction.CSharp\Semmle.Extraction.CSharp.csproj" />
18-
<ProjectReference Include="..\Semmle.Util\Semmle.Util.csproj" />
19-
</ItemGroup>
20-
21-
<ItemGroup>
22-
<Folder Include="Properties\" />
23-
</ItemGroup>
24-
25-
<ItemGroup>
26-
<PackageReference Include="Microsoft.Build" Version="16.9.0" />
27-
<PackageReference Include="Microsoft.Win32.Primitives" Version="4.3.0" />
28-
<PackageReference Include="System.Net.Primitives" Version="4.3.1" />
29-
<PackageReference Include="System.Security.Principal" Version="4.3.0" />
30-
<PackageReference Include="System.Threading.ThreadPool" Version="4.3.0" />
31-
</ItemGroup>
32-
33-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<OutputType>Exe</OutputType>
4+
<TargetFramework>net5.0</TargetFramework>
5+
<AssemblyName>Semmle.Extraction.CSharp.Standalone</AssemblyName>
6+
<RootNamespace>Semmle.Extraction.CSharp.Standalone</RootNamespace>
7+
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
8+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
9+
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
10+
<WarningsAsErrors/>
11+
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
12+
<Nullable>enable</Nullable>
13+
</PropertyGroup>
14+
<ItemGroup>
15+
<ProjectReference Include="..\Semmle.Extraction.CSharp\Semmle.Extraction.CSharp.csproj"/>
16+
<ProjectReference Include="..\Semmle.Util\Semmle.Util.csproj"/>
17+
</ItemGroup>
18+
<ItemGroup>
19+
<Folder Include="Properties\"/>
20+
</ItemGroup>
21+
<ItemGroup>
22+
<PackageReference Include="Microsoft.Build" Version="16.11.0"/>
23+
<PackageReference Include="Microsoft.Win32.Primitives" Version="4.3.0"/>
24+
<PackageReference Include="System.Net.Primitives" Version="4.3.1"/>
25+
<PackageReference Include="System.Security.Principal" Version="4.3.0"/>
26+
<PackageReference Include="System.Threading.ThreadPool" Version="4.3.0"/>
27+
</ItemGroup>
28+
</Project>
Lines changed: 23 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,24 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<TargetFramework>net5.0</TargetFramework>
5-
<AssemblyName>Semmle.Extraction.CSharp</AssemblyName>
6-
<RootNamespace>Semmle.Extraction.CSharp</RootNamespace>
7-
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
8-
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
9-
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
10-
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
11-
<Nullable>enable</Nullable>
12-
</PropertyGroup>
13-
14-
<ItemGroup>
15-
<ProjectReference Include="..\Semmle.Extraction.CIL\Semmle.Extraction.CIL.csproj" />
16-
<ProjectReference Include="..\Semmle.Extraction\Semmle.Extraction.csproj" />
17-
<ProjectReference Include="..\Semmle.Util\Semmle.Util.csproj" />
18-
</ItemGroup>
19-
20-
<ItemGroup>
21-
<Folder Include="Properties\" />
22-
</ItemGroup>
23-
24-
<ItemGroup>
25-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.9.0" />
26-
<PackageReference Include="Microsoft.Build" Version="16.9.0" />
27-
</ItemGroup>
28-
29-
</Project>
2+
<PropertyGroup>
3+
<TargetFramework>net5.0</TargetFramework>
4+
<AssemblyName>Semmle.Extraction.CSharp</AssemblyName>
5+
<RootNamespace>Semmle.Extraction.CSharp</RootNamespace>
6+
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
7+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
8+
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
9+
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
10+
<Nullable>enable</Nullable>
11+
</PropertyGroup>
12+
<ItemGroup>
13+
<ProjectReference Include="..\Semmle.Extraction.CIL\Semmle.Extraction.CIL.csproj"/>
14+
<ProjectReference Include="..\Semmle.Extraction\Semmle.Extraction.csproj"/>
15+
<ProjectReference Include="..\Semmle.Util\Semmle.Util.csproj"/>
16+
</ItemGroup>
17+
<ItemGroup>
18+
<Folder Include="Properties\"/>
19+
</ItemGroup>
20+
<ItemGroup>
21+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.0.1"/>
22+
<PackageReference Include="Microsoft.Build" Version="16.11.0"/>
23+
</ItemGroup>
24+
</Project>
Lines changed: 23 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,24 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<TargetFramework>net5.0</TargetFramework>
5-
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
6-
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
7-
<Nullable>enable</Nullable>
8-
</PropertyGroup>
9-
10-
<ItemGroup>
11-
<PackageReference Include="System.IO.FileSystem" Version="4.3.0" />
12-
<PackageReference Include="System.IO.FileSystem.Primitives" Version="4.3.0" />
13-
<PackageReference Include="xunit" Version="2.4.1" />
14-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
15-
<PrivateAssets>all</PrivateAssets>
16-
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
17-
</PackageReference>
18-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.1" />
19-
</ItemGroup>
20-
21-
<ItemGroup>
22-
<ProjectReference Include="..\Semmle.Extraction.CSharp.Standalone\Semmle.Extraction.CSharp.Standalone.csproj" />
23-
<ProjectReference Include="..\Semmle.Extraction.CSharp\Semmle.Extraction.CSharp.csproj" />
24-
<ProjectReference Include="..\Semmle.Extraction\Semmle.Extraction.csproj" />
25-
<ProjectReference Include="..\Semmle.Util\Semmle.Util.csproj" />
26-
</ItemGroup>
27-
28-
</Project>
2+
<PropertyGroup>
3+
<TargetFramework>net5.0</TargetFramework>
4+
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
5+
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
6+
<Nullable>enable</Nullable>
7+
</PropertyGroup>
8+
<ItemGroup>
9+
<PackageReference Include="System.IO.FileSystem" Version="4.3.0"/>
10+
<PackageReference Include="System.IO.FileSystem.Primitives" Version="4.3.0"/>
11+
<PackageReference Include="xunit" Version="2.4.1"/>
12+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
13+
<PrivateAssets>all</PrivateAssets>
14+
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
15+
</PackageReference>
16+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0"/>
17+
</ItemGroup>
18+
<ItemGroup>
19+
<ProjectReference Include="..\Semmle.Extraction.CSharp.Standalone\Semmle.Extraction.CSharp.Standalone.csproj"/>
20+
<ProjectReference Include="..\Semmle.Extraction.CSharp\Semmle.Extraction.CSharp.csproj"/>
21+
<ProjectReference Include="..\Semmle.Extraction\Semmle.Extraction.csproj"/>
22+
<ProjectReference Include="..\Semmle.Util\Semmle.Util.csproj"/>
23+
</ItemGroup>
24+
</Project>
Lines changed: 24 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,24 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<TargetFramework>net5.0</TargetFramework>
5-
<AssemblyName>Semmle.Extraction</AssemblyName>
6-
<RootNamespace>Semmle.Extraction</RootNamespace>
7-
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
8-
<CodeAnalysisRuleSet>Semmle.Extraction.ruleset</CodeAnalysisRuleSet>
9-
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
10-
<Nullable>enable</Nullable>
11-
</PropertyGroup>
12-
13-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
14-
<DefineConstants>TRACE;DEBUG;DEBUG_LABELS</DefineConstants>
15-
</PropertyGroup>
16-
17-
<ItemGroup>
18-
<PackageReference Include="Microsoft.CodeAnalysis" Version="3.9.0" />
19-
<PackageReference Include="GitInfo" Version="2.1.2">
20-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
21-
<PrivateAssets>all</PrivateAssets>
22-
</PackageReference>
23-
</ItemGroup>
24-
25-
<ItemGroup>
26-
<ProjectReference Include="..\Semmle.Util\Semmle.Util.csproj" />
27-
</ItemGroup>
28-
29-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<TargetFramework>net5.0</TargetFramework>
4+
<AssemblyName>Semmle.Extraction</AssemblyName>
5+
<RootNamespace>Semmle.Extraction</RootNamespace>
6+
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
7+
<CodeAnalysisRuleSet>Semmle.Extraction.ruleset</CodeAnalysisRuleSet>
8+
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
9+
<Nullable>enable</Nullable>
10+
</PropertyGroup>
11+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
12+
<DefineConstants>TRACE;DEBUG;DEBUG_LABELS</DefineConstants>
13+
</PropertyGroup>
14+
<ItemGroup>
15+
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.0.1"/>
16+
<PackageReference Include="GitInfo" Version="2.2.0">
17+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
18+
<PrivateAssets>all</PrivateAssets>
19+
</PackageReference>
20+
</ItemGroup>
21+
<ItemGroup>
22+
<ProjectReference Include="..\Semmle.Util\Semmle.Util.csproj"/>
23+
</ItemGroup>
24+
</Project>

0 commit comments

Comments
 (0)