mirror of
https://github.com/github/codeql.git
synced 2026-04-25 00:35:20 +02:00
Merge pull request #14892 from michaelnebel/csharp/dotnet8
C#: Use .NET 8
This commit is contained in:
2
.github/workflows/codeql-analysis.yml
vendored
2
.github/workflows/codeql-analysis.yml
vendored
@@ -30,7 +30,7 @@ jobs:
|
||||
- name: Setup dotnet
|
||||
uses: actions/setup-dotnet@v4
|
||||
with:
|
||||
dotnet-version: 7.0.102
|
||||
dotnet-version: 8.0.100
|
||||
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
10
.github/workflows/csharp-qltest.yml
vendored
10
.github/workflows/csharp-qltest.yml
vendored
@@ -74,13 +74,13 @@ jobs:
|
||||
- name: Setup dotnet
|
||||
uses: actions/setup-dotnet@v4
|
||||
with:
|
||||
dotnet-version: 7.0.102
|
||||
dotnet-version: 8.0.100
|
||||
- name: Extractor unit tests
|
||||
run: |
|
||||
dotnet test -p:RuntimeFrameworkVersion=7.0.2 extractor/Semmle.Util.Tests
|
||||
dotnet test -p:RuntimeFrameworkVersion=7.0.2 extractor/Semmle.Extraction.Tests
|
||||
dotnet test -p:RuntimeFrameworkVersion=7.0.2 autobuilder/Semmle.Autobuild.CSharp.Tests
|
||||
dotnet test -p:RuntimeFrameworkVersion=7.0.2 "${{ github.workspace }}/cpp/autobuilder/Semmle.Autobuild.Cpp.Tests"
|
||||
dotnet test -p:RuntimeFrameworkVersion=8.0.0 extractor/Semmle.Util.Tests
|
||||
dotnet test -p:RuntimeFrameworkVersion=8.0.0 extractor/Semmle.Extraction.Tests
|
||||
dotnet test -p:RuntimeFrameworkVersion=8.0.0 autobuilder/Semmle.Autobuild.CSharp.Tests
|
||||
dotnet test -p:RuntimeFrameworkVersion=8.0.0 "${{ github.workspace }}/cpp/autobuilder/Semmle.Autobuild.Cpp.Tests"
|
||||
shell: bash
|
||||
stubgentest:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
|
||||
<Nullable>enable</Nullable>
|
||||
@@ -11,12 +11,12 @@
|
||||
<ItemGroup>
|
||||
<PackageReference Include="System.IO.FileSystem" Version="4.3.0" />
|
||||
<PackageReference Include="System.IO.FileSystem.Primitives" Version="4.3.0" />
|
||||
<PackageReference Include="xunit" Version="2.4.2" />
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
|
||||
<PackageReference Include="xunit" Version="2.6.2" />
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.4">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AssemblyName>Semmle.Autobuild.Cpp</AssemblyName>
|
||||
<RootNamespace>Semmle.Autobuild.Cpp</RootNamespace>
|
||||
<ApplicationIcon />
|
||||
@@ -17,7 +17,7 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Build" Version="17.3.2" />
|
||||
<PackageReference Include="Microsoft.Build" Version="17.8.3" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
@@ -7,7 +7,7 @@ runs:
|
||||
- name: Setup dotnet
|
||||
uses: actions/setup-dotnet@v3
|
||||
with:
|
||||
dotnet-version: 7.0.102
|
||||
dotnet-version: 8.0.100
|
||||
- name: Build Extractor
|
||||
shell: bash
|
||||
run: scripts/create-extractor-pack.sh
|
||||
|
||||
@@ -327,7 +327,7 @@ namespace Semmle.Autobuild.CSharp.Tests
|
||||
Assert.Equal("codeql", startCallbackIn[0]);
|
||||
Assert.Equal("", endCallbackIn[0]);
|
||||
Assert.Equal(0, endCallbackReturn[0]);
|
||||
Assert.Equal(1, endCallbackReturn.Count);
|
||||
Assert.Single(endCallbackReturn);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
|
||||
<Nullable>enable</Nullable>
|
||||
@@ -8,15 +8,15 @@
|
||||
<ItemGroup>
|
||||
<PackageReference Include="System.IO.FileSystem" Version="4.3.0" />
|
||||
<PackageReference Include="System.IO.FileSystem.Primitives" Version="4.3.0" />
|
||||
<PackageReference Include="xunit" Version="2.4.2" />
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
|
||||
<PackageReference Include="xunit" Version="2.6.2" />
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.4">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Semmle.Autobuild.CSharp\Semmle.Autobuild.CSharp.csproj" />
|
||||
<ProjectReference Include="..\Semmle.Autobuild.Shared\Semmle.Autobuild.Shared.csproj" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
</Project>
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AssemblyName>Semmle.Autobuild.CSharp</AssemblyName>
|
||||
<RootNamespace>Semmle.Autobuild.CSharp</RootNamespace>
|
||||
<ApplicationIcon/>
|
||||
<ApplicationIcon />
|
||||
<OutputType>Exe</OutputType>
|
||||
<StartupObject/>
|
||||
<StartupObject />
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
|
||||
<Nullable>enable</Nullable>
|
||||
@@ -14,12 +14,12 @@
|
||||
<Folder Include="Properties\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Build" Version="17.3.2" />
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
|
||||
<PackageReference Include="Microsoft.Build" Version="17.8.3" />
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\extractor\Semmle.Util\Semmle.Util.csproj" />
|
||||
<ProjectReference Include="..\..\extractor\Semmle.Extraction.CSharp\Semmle.Extraction.CSharp.csproj" />
|
||||
<ProjectReference Include="..\Semmle.Autobuild.Shared\Semmle.Autobuild.Shared.csproj" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
</Project>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AssemblyName>Semmle.Autobuild.Shared</AssemblyName>
|
||||
<RootNamespace>Semmle.Autobuild.Shared</RootNamespace>
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
@@ -11,9 +11,9 @@
|
||||
<Folder Include="Properties\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Build" Version="17.3.2" />
|
||||
<PackageReference Include="Microsoft.Build" Version="17.8.3" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\extractor\Semmle.Util\Semmle.Util.csproj" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
</Project>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AssemblyName>Semmle.Extraction.CIL.Driver</AssemblyName>
|
||||
<RootNamespace>Semmle.Extraction.CIL.Driver</RootNamespace>
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AssemblyName>Semmle.Extraction.CIL</AssemblyName>
|
||||
<RootNamespace>Semmle.Extraction.CIL</RootNamespace>
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
@@ -24,7 +24,7 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.DiaSymReader" Version="1.4.0" />
|
||||
<PackageReference Include="Microsoft.DiaSymReader" Version="2.0.0" />
|
||||
<PackageReference Include="Microsoft.DiaSymReader.Native" Version="1.7.0" />
|
||||
<PackageReference Include="Microsoft.DiaSymReader.PortablePdb" Version="1.6.0"><IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AssemblyName>Semmle.Extraction.CSharp.DependencyFetching</AssemblyName>
|
||||
<RootNamespace>Semmle.Extraction.CSharp.DependencyFetching</RootNamespace>
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AssemblyName>Semmle.Extraction.CSharp.DependencyStubGenerator</AssemblyName>
|
||||
<RootNamespace>Semmle.Extraction.CSharp.DependencyStubGenerator</RootNamespace>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AssemblyName>Semmle.Extraction.CSharp.Driver</AssemblyName>
|
||||
<RootNamespace>Semmle.Extraction.CSharp.Driver</RootNamespace>
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AssemblyName>Semmle.Extraction.CSharp.Standalone</AssemblyName>
|
||||
<RootNamespace>Semmle.Extraction.CSharp.Standalone</RootNamespace>
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
||||
<WarningsAsErrors/>
|
||||
<WarningsAsErrors />
|
||||
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
@@ -19,10 +19,10 @@
|
||||
<Folder Include="Properties\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Build" Version="17.3.2" />
|
||||
<PackageReference Include="Microsoft.Build" Version="17.8.3" />
|
||||
<PackageReference Include="Microsoft.Win32.Primitives" Version="4.3.0" />
|
||||
<PackageReference Include="System.Net.Primitives" Version="4.3.1" />
|
||||
<PackageReference Include="System.Security.Principal" Version="4.3.0" />
|
||||
<PackageReference Include="System.Threading.ThreadPool" Version="4.3.0" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
</Project>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AssemblyName>Semmle.Extraction.CSharp.StubGenerator</AssemblyName>
|
||||
<RootNamespace>Semmle.Extraction.CSharp.StubGenerator</RootNamespace>
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
@@ -13,6 +13,6 @@
|
||||
<ProjectReference Include="..\Semmle.Extraction.CSharp.Util\Semmle.Extraction.CSharp.Util.csproj" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.4.0" />
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.8.0" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
</Project>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AssemblyName>Semmle.Extraction.CSharp.Util</AssemblyName>
|
||||
<RootNamespace>Semmle.Extraction.CSharp.Util</RootNamespace>
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
@@ -12,6 +12,6 @@
|
||||
<ProjectReference Include="..\Semmle.Util\Semmle.Util.csproj" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.4.0" />
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.8.0" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
</Project>
|
||||
|
||||
@@ -20,7 +20,10 @@ namespace Semmle.Extraction.CSharp.Entities
|
||||
|
||||
protected override void Populate(TextWriter trapFile)
|
||||
{
|
||||
var info = Context.GetModel(node).GetSymbolInfo(node.Name);
|
||||
// This is guaranteed to be non-null as we only deal with "using namespace" not "using X = Y"
|
||||
var name = node.Name!;
|
||||
|
||||
var info = Context.GetModel(node).GetSymbolInfo(name);
|
||||
|
||||
if (node.StaticKeyword.IsKind(SyntaxKind.None))
|
||||
{
|
||||
@@ -33,7 +36,7 @@ namespace Semmle.Extraction.CSharp.Entities
|
||||
}
|
||||
else
|
||||
{
|
||||
Context.Extractor.MissingNamespace(node.Name.ToFullString(), Context.FromSource);
|
||||
Context.Extractor.MissingNamespace(name.ToFullString(), Context.FromSource);
|
||||
Context.ModelError(node, "Namespace not found");
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -263,7 +263,7 @@ namespace Semmle.Extraction.CSharp
|
||||
File.GetLastWriteTime(dest) >= File.GetLastWriteTime(src);
|
||||
}
|
||||
|
||||
private void AnalyseNamespace(Context cx, INamespaceSymbol ns)
|
||||
private static void AnalyseNamespace(Context cx, INamespaceSymbol ns)
|
||||
{
|
||||
foreach (var memberNamespace in ns.GetNamespaceMembers())
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AssemblyName>Semmle.Extraction.CSharp</AssemblyName>
|
||||
<RootNamespace>Semmle.Extraction.CSharp</RootNamespace>
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
@@ -18,7 +18,7 @@
|
||||
<Folder Include="Properties\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.4.0" />
|
||||
<PackageReference Include="Microsoft.Build" Version="17.3.2" />
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.8.0" />
|
||||
<PackageReference Include="Microsoft.Build" Version="17.8.3" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
</Project>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
|
||||
<Nullable>enable</Nullable>
|
||||
@@ -8,12 +8,12 @@
|
||||
<ItemGroup>
|
||||
<PackageReference Include="System.IO.FileSystem" Version="4.3.0" />
|
||||
<PackageReference Include="System.IO.FileSystem.Primitives" Version="4.3.0" />
|
||||
<PackageReference Include="xunit" Version="2.4.2" />
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
|
||||
<PackageReference Include="xunit" Version="2.6.2" />
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.4">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Semmle.Extraction.CSharp.StubGenerator\Semmle.Extraction.CSharp.StubGenerator.csproj" />
|
||||
@@ -22,4 +22,4 @@
|
||||
<ProjectReference Include="..\Semmle.Extraction\Semmle.Extraction.csproj" />
|
||||
<ProjectReference Include="..\Semmle.Util\Semmle.Util.csproj" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
</Project>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AssemblyName>Semmle.Extraction</AssemblyName>
|
||||
<RootNamespace>Semmle.Extraction</RootNamespace>
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
@@ -12,9 +12,9 @@
|
||||
<DefineConstants>TRACE;DEBUG;DEBUG_LABELS</DefineConstants>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Build" Version="17.3.2" />
|
||||
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.4.0" />
|
||||
<PackageReference Include="GitInfo" Version="2.2.0">
|
||||
<PackageReference Include="Microsoft.Build" Version="17.8.3" />
|
||||
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.8.0" />
|
||||
<PackageReference Include="GitInfo" Version="3.3.3">
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
</PackageReference>
|
||||
@@ -22,4 +22,4 @@
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Semmle.Util\Semmle.Util.csproj" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
</Project>
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="xunit" Version="2.4.2" />
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
|
||||
<PackageReference Include="xunit" Version="2.6.2" />
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.4">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Semmle.Util\Semmle.Util.csproj" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
</Project>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AssemblyName>Semmle.Util</AssemblyName>
|
||||
<RootNamespace>Semmle.Util</RootNamespace>
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
@@ -15,7 +15,7 @@
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Mono.Posix.NETStandard" Version="1.0.0" />
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
| Program.cs:0:0:0:0 | Program.cs |
|
||||
| Views/Home/Index.cshtml:0:0:0:0 | Views/Home/Index.cshtml |
|
||||
| obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs:0:0:0:0 | obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs |
|
||||
| obj/Debug/net7.0/cshtml.AssemblyInfo.cs:0:0:0:0 | obj/Debug/net7.0/cshtml.AssemblyInfo.cs |
|
||||
| obj/Debug/net7.0/cshtml.GlobalUsings.g.cs:0:0:0:0 | obj/Debug/net7.0/cshtml.GlobalUsings.g.cs |
|
||||
| obj/Debug/net7.0/cshtml.RazorAssemblyInfo.cs:0:0:0:0 | obj/Debug/net7.0/cshtml.RazorAssemblyInfo.cs |
|
||||
| obj/Debug/net7.0/generated/Microsoft.NET.Sdk.Razor.SourceGenerators/Microsoft.NET.Sdk.Razor.SourceGenerators.RazorSourceGenerator/Views_Home_Index_cshtml.g.cs:0:0:0:0 | obj/Debug/net7.0/generated/Microsoft.NET.Sdk.Razor.SourceGenerators/Microsoft.NET.Sdk.Razor.SourceGenerators.RazorSourceGenerator/Views_Home_Index_cshtml.g.cs |
|
||||
| obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs:0:0:0:0 | obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs |
|
||||
| obj/Debug/net8.0/cshtml.AssemblyInfo.cs:0:0:0:0 | obj/Debug/net8.0/cshtml.AssemblyInfo.cs |
|
||||
| obj/Debug/net8.0/cshtml.GlobalUsings.g.cs:0:0:0:0 | obj/Debug/net8.0/cshtml.GlobalUsings.g.cs |
|
||||
| obj/Debug/net8.0/cshtml.RazorAssemblyInfo.cs:0:0:0:0 | obj/Debug/net8.0/cshtml.RazorAssemblyInfo.cs |
|
||||
| obj/Debug/net8.0/generated/Microsoft.NET.Sdk.Razor.SourceGenerators/Microsoft.NET.Sdk.Razor.SourceGenerators.RazorSourceGenerator/Views_Home_Index_cshtml.g.cs:0:0:0:0 | obj/Debug/net8.0/generated/Microsoft.NET.Sdk.Razor.SourceGenerators/Microsoft.NET.Sdk.Razor.SourceGenerators.RazorSourceGenerator/Views_Home_Index_cshtml.g.cs |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "7.0.102"
|
||||
"version": "8.0.100"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "7.0.102"
|
||||
"version": "8.0.100"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
</Project>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "7.0.102"
|
||||
"version": "8.0.100"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "7.0.102"
|
||||
"version": "8.0.100"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "7.0.102"
|
||||
"version": "8.0.100"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<LanguageTargets>$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets</LanguageTargets>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "7.0.102"
|
||||
"version": "8.0.100"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<Target Name="DeleteBinObjFolders" BeforeTargets="Clean">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "7.0.102"
|
||||
"version": "8.0.100"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "7.0.102"
|
||||
"version": "8.0.100"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "7.0.102"
|
||||
"version": "8.0.100"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "7.0.102"
|
||||
"version": "8.0.100"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "7.0.102"
|
||||
"version": "8.0.100"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "7.0.102"
|
||||
"version": "8.0.100"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "7.0.401"
|
||||
"version": "8.0.100"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<IsPackable>false</IsPackable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
|
||||
<PackageReference Include="NUnit" Version="3.13.3" />
|
||||
<PackageReference Include="NUnit3TestAdapter" Version="4.3.0" />
|
||||
<PackageReference Include="coverlet.collector" Version="3.2.0" />
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
|
||||
<PackageReference Include="NUnit" Version="3.14.0" />
|
||||
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
|
||||
<PackageReference Include="coverlet.collector" Version="6.0.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="DeleteBinObjFolders" BeforeTargets="Clean">
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "7.0.102"
|
||||
"version": "8.0.100"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
|
||||
@@ -11,10 +11,10 @@
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
|
||||
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
|
||||
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
|
||||
<PackageReference Include="coverlet.collector" Version="3.1.2" />
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
|
||||
<PackageReference Include="MSTest.TestAdapter" Version="3.1.1" />
|
||||
<PackageReference Include="MSTest.TestFramework" Version="3.1.1" />
|
||||
<PackageReference Include="coverlet.collector" Version="6.0.0" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "7.0.102"
|
||||
"version": "8.0.100"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "7.0.102"
|
||||
"version": "8.0.100"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
@@ -1,166 +1,166 @@
|
||||
| /avalara.avatax/21.10.0/lib/netstandard20/Avalara.AvaTax.netstandard20.dll |
|
||||
| /microsoft.bcl.asyncinterfaces/6.0.0/lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/Microsoft.CSharp.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/Microsoft.VisualBasic.Core.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/Microsoft.VisualBasic.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/Microsoft.Win32.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/Microsoft.Win32.Registry.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.AppContext.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Buffers.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Collections.Concurrent.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Collections.Immutable.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Collections.NonGeneric.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Collections.Specialized.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Collections.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ComponentModel.Annotations.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ComponentModel.DataAnnotations.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ComponentModel.EventBasedAsync.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ComponentModel.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ComponentModel.TypeConverter.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ComponentModel.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Configuration.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Console.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Core.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Data.Common.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Data.DataSetExtensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Data.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.Contracts.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.Debug.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.DiagnosticSource.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.FileVersionInfo.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.Process.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.StackTrace.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.TextWriterTraceListener.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.Tools.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.TraceSource.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.Tracing.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Drawing.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Drawing.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Dynamic.Runtime.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Formats.Asn1.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Formats.Tar.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Globalization.Calendars.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Globalization.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Globalization.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.Compression.Brotli.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.Compression.FileSystem.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.Compression.ZipFile.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.Compression.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.FileSystem.AccessControl.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.FileSystem.DriveInfo.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.FileSystem.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.FileSystem.Watcher.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.FileSystem.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.IsolatedStorage.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.MemoryMappedFiles.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.Pipes.AccessControl.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.Pipes.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.UnmanagedMemoryStream.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Linq.Expressions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Linq.Parallel.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Linq.Queryable.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Linq.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Memory.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Http.Json.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Http.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.HttpListener.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Mail.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.NameResolution.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.NetworkInformation.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Ping.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Quic.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Requests.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Security.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.ServicePoint.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Sockets.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.WebClient.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.WebHeaderCollection.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.WebProxy.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.WebSockets.Client.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.WebSockets.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Numerics.Vectors.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Numerics.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ObjectModel.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.DispatchProxy.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.Emit.ILGeneration.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.Emit.Lightweight.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.Emit.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.Metadata.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.TypeExtensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Resources.Reader.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Resources.ResourceManager.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Resources.Writer.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.CompilerServices.Unsafe.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.CompilerServices.VisualC.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Handles.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.InteropServices.JavaScript.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.InteropServices.RuntimeInformation.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.InteropServices.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Intrinsics.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Loader.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Numerics.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Serialization.Formatters.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Serialization.Json.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Serialization.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Serialization.Xml.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Serialization.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.AccessControl.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Claims.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.Algorithms.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.Cng.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.Csp.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.Encoding.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.OpenSsl.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.X509Certificates.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Principal.Windows.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Principal.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.SecureString.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ServiceModel.Web.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ServiceProcess.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Text.Encoding.CodePages.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Text.Encoding.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Text.Encoding.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Text.Encodings.Web.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Text.Json.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Text.RegularExpressions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Channels.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Overlapped.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Tasks.Dataflow.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Tasks.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Tasks.Parallel.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Tasks.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Thread.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.ThreadPool.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Timer.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Transactions.Local.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Transactions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ValueTuple.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Web.HttpUtility.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Web.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Windows.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.Linq.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.ReaderWriter.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.Serialization.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.XDocument.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.XPath.XDocument.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.XPath.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.XmlDocument.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.XmlSerializer.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/WindowsBase.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/mscorlib.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/netstandard.dll |
|
||||
| /avalara.avatax/23.11.0/lib/netstandard2.0/Avalara.AvaTax.RestClient.dll |
|
||||
| /microsoft.bcl.asyncinterfaces/8.0.0/lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/Microsoft.CSharp.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/Microsoft.VisualBasic.Core.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/Microsoft.VisualBasic.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/Microsoft.Win32.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/Microsoft.Win32.Registry.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.AppContext.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Buffers.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Collections.Concurrent.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Collections.Immutable.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Collections.NonGeneric.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Collections.Specialized.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Collections.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ComponentModel.Annotations.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ComponentModel.DataAnnotations.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ComponentModel.EventBasedAsync.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ComponentModel.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ComponentModel.TypeConverter.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ComponentModel.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Configuration.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Console.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Core.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Data.Common.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Data.DataSetExtensions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Data.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.Contracts.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.Debug.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.DiagnosticSource.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.FileVersionInfo.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.Process.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.StackTrace.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.TextWriterTraceListener.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.Tools.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.TraceSource.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.Tracing.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Drawing.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Drawing.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Dynamic.Runtime.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Formats.Asn1.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Formats.Tar.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Globalization.Calendars.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Globalization.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Globalization.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.Compression.Brotli.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.Compression.FileSystem.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.Compression.ZipFile.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.Compression.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.FileSystem.AccessControl.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.FileSystem.DriveInfo.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.FileSystem.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.FileSystem.Watcher.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.FileSystem.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.IsolatedStorage.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.MemoryMappedFiles.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.Pipes.AccessControl.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.Pipes.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.UnmanagedMemoryStream.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Linq.Expressions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Linq.Parallel.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Linq.Queryable.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Linq.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Memory.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Http.Json.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Http.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.HttpListener.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Mail.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.NameResolution.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.NetworkInformation.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Ping.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Quic.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Requests.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Security.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.ServicePoint.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Sockets.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.WebClient.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.WebHeaderCollection.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.WebProxy.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.WebSockets.Client.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.WebSockets.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Numerics.Vectors.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Numerics.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ObjectModel.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.DispatchProxy.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.Emit.ILGeneration.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.Emit.Lightweight.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.Emit.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.Metadata.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.TypeExtensions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Resources.Reader.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Resources.ResourceManager.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Resources.Writer.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.CompilerServices.Unsafe.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.CompilerServices.VisualC.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Handles.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.InteropServices.JavaScript.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.InteropServices.RuntimeInformation.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.InteropServices.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Intrinsics.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Loader.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Numerics.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Serialization.Formatters.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Serialization.Json.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Serialization.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Serialization.Xml.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Serialization.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.AccessControl.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Claims.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.Algorithms.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.Cng.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.Csp.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.Encoding.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.OpenSsl.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.X509Certificates.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Principal.Windows.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Principal.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.SecureString.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ServiceModel.Web.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ServiceProcess.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Text.Encoding.CodePages.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Text.Encoding.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Text.Encoding.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Text.Encodings.Web.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Text.Json.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Text.RegularExpressions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.Channels.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.Overlapped.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.Tasks.Dataflow.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.Tasks.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.Tasks.Parallel.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.Tasks.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.Thread.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.ThreadPool.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.Timer.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Transactions.Local.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Transactions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ValueTuple.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Web.HttpUtility.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Web.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Windows.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.Linq.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.ReaderWriter.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.Serialization.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.XDocument.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.XPath.XDocument.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.XPath.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.XmlDocument.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.XmlSerializer.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/WindowsBase.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/mscorlib.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/netstandard.dll |
|
||||
| /newtonsoft.json/12.0.1/lib/netstandard2.0/Newtonsoft.Json.dll |
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "7.0.102"
|
||||
"version": "8.0.100"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFrameworks>net7.0;net6.0;netcoreapp3.1;netstandard2.0;net48</TargetFrameworks>
|
||||
<TargetFrameworks>net8.0;net6.0;netcoreapp3.1;netstandard2.0;net48</TargetFrameworks>
|
||||
</PropertyGroup>
|
||||
|
||||
<Target Name="DeleteBinObjFolders" BeforeTargets="Clean">
|
||||
@@ -11,9 +11,9 @@
|
||||
</Target>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" />
|
||||
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" />
|
||||
<!-- The below causes DB-CHECK errors: -->
|
||||
<!-- <PackageReference Include="NUnit" Version="3.10.1" /> -->
|
||||
<PackageReference Include="Avalara.AvaTax" Version="21.10.0" />
|
||||
<PackageReference Include="Avalara.AvaTax" Version="23.11.0" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
||||
@@ -1,163 +1,163 @@
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/Microsoft.CSharp.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/Microsoft.VisualBasic.Core.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/Microsoft.VisualBasic.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/Microsoft.Win32.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/Microsoft.Win32.Registry.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.AppContext.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Buffers.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Collections.Concurrent.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Collections.Immutable.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Collections.NonGeneric.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Collections.Specialized.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Collections.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ComponentModel.Annotations.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ComponentModel.DataAnnotations.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ComponentModel.EventBasedAsync.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ComponentModel.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ComponentModel.TypeConverter.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ComponentModel.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Configuration.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Console.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Core.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Data.Common.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Data.DataSetExtensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Data.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.Contracts.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.Debug.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.DiagnosticSource.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.FileVersionInfo.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.Process.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.StackTrace.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.TextWriterTraceListener.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.Tools.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.TraceSource.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.Tracing.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Drawing.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Drawing.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Dynamic.Runtime.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Formats.Asn1.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Formats.Tar.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Globalization.Calendars.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Globalization.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Globalization.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.Compression.Brotli.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.Compression.FileSystem.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.Compression.ZipFile.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.Compression.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.FileSystem.AccessControl.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.FileSystem.DriveInfo.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.FileSystem.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.FileSystem.Watcher.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.FileSystem.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.IsolatedStorage.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.MemoryMappedFiles.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.Pipes.AccessControl.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.Pipes.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.UnmanagedMemoryStream.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Linq.Expressions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Linq.Parallel.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Linq.Queryable.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Linq.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Memory.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Http.Json.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Http.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.HttpListener.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Mail.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.NameResolution.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.NetworkInformation.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Ping.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Quic.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Requests.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Security.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.ServicePoint.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Sockets.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.WebClient.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.WebHeaderCollection.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.WebProxy.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.WebSockets.Client.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.WebSockets.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Numerics.Vectors.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Numerics.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ObjectModel.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.DispatchProxy.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.Emit.ILGeneration.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.Emit.Lightweight.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.Emit.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.Metadata.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.TypeExtensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Resources.Reader.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Resources.ResourceManager.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Resources.Writer.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.CompilerServices.Unsafe.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.CompilerServices.VisualC.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Handles.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.InteropServices.JavaScript.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.InteropServices.RuntimeInformation.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.InteropServices.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Intrinsics.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Loader.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Numerics.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Serialization.Formatters.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Serialization.Json.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Serialization.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Serialization.Xml.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Serialization.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.AccessControl.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Claims.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.Algorithms.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.Cng.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.Csp.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.Encoding.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.OpenSsl.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.X509Certificates.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Principal.Windows.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Principal.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.SecureString.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ServiceModel.Web.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ServiceProcess.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Text.Encoding.CodePages.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Text.Encoding.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Text.Encoding.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Text.Encodings.Web.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Text.Json.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Text.RegularExpressions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Channels.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Overlapped.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Tasks.Dataflow.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Tasks.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Tasks.Parallel.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Tasks.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Thread.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.ThreadPool.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Timer.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Transactions.Local.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Transactions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ValueTuple.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Web.HttpUtility.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Web.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Windows.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.Linq.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.ReaderWriter.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.Serialization.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.XDocument.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.XPath.XDocument.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.XPath.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.XmlDocument.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.XmlSerializer.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/WindowsBase.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/mscorlib.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/netstandard.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/Microsoft.CSharp.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/Microsoft.VisualBasic.Core.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/Microsoft.VisualBasic.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/Microsoft.Win32.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/Microsoft.Win32.Registry.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.AppContext.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Buffers.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Collections.Concurrent.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Collections.Immutable.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Collections.NonGeneric.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Collections.Specialized.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Collections.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ComponentModel.Annotations.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ComponentModel.DataAnnotations.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ComponentModel.EventBasedAsync.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ComponentModel.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ComponentModel.TypeConverter.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ComponentModel.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Configuration.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Console.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Core.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Data.Common.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Data.DataSetExtensions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Data.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.Contracts.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.Debug.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.DiagnosticSource.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.FileVersionInfo.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.Process.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.StackTrace.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.TextWriterTraceListener.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.Tools.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.TraceSource.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.Tracing.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Drawing.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Drawing.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Dynamic.Runtime.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Formats.Asn1.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Formats.Tar.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Globalization.Calendars.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Globalization.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Globalization.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.Compression.Brotli.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.Compression.FileSystem.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.Compression.ZipFile.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.Compression.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.FileSystem.AccessControl.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.FileSystem.DriveInfo.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.FileSystem.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.FileSystem.Watcher.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.FileSystem.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.IsolatedStorage.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.MemoryMappedFiles.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.Pipes.AccessControl.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.Pipes.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.UnmanagedMemoryStream.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Linq.Expressions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Linq.Parallel.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Linq.Queryable.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Linq.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Memory.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Http.Json.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Http.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.HttpListener.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Mail.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.NameResolution.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.NetworkInformation.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Ping.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Quic.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Requests.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Security.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.ServicePoint.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Sockets.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.WebClient.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.WebHeaderCollection.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.WebProxy.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.WebSockets.Client.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.WebSockets.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Numerics.Vectors.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Numerics.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ObjectModel.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.DispatchProxy.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.Emit.ILGeneration.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.Emit.Lightweight.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.Emit.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.Metadata.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.TypeExtensions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Resources.Reader.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Resources.ResourceManager.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Resources.Writer.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.CompilerServices.Unsafe.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.CompilerServices.VisualC.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Handles.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.InteropServices.JavaScript.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.InteropServices.RuntimeInformation.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.InteropServices.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Intrinsics.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Loader.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Numerics.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Serialization.Formatters.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Serialization.Json.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Serialization.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Serialization.Xml.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Serialization.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.AccessControl.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Claims.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.Algorithms.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.Cng.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.Csp.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.Encoding.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.OpenSsl.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.X509Certificates.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Principal.Windows.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Principal.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.SecureString.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ServiceModel.Web.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ServiceProcess.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Text.Encoding.CodePages.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Text.Encoding.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Text.Encoding.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Text.Encodings.Web.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Text.Json.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Text.RegularExpressions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.Channels.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.Overlapped.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.Tasks.Dataflow.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.Tasks.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.Tasks.Parallel.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.Tasks.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.Thread.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.ThreadPool.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.Timer.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Transactions.Local.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Transactions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ValueTuple.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Web.HttpUtility.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Web.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Windows.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.Linq.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.ReaderWriter.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.Serialization.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.XDocument.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.XPath.XDocument.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.XPath.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.XmlDocument.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.XmlSerializer.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/WindowsBase.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/mscorlib.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/netstandard.dll |
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "7.0.102"
|
||||
"version": "8.0.100"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "7.0.102"
|
||||
"version": "8.0.100"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "7.0.102"
|
||||
"version": "8.0.100"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,210 +1,210 @@
|
||||
| /avalara.avatax/21.10.0/lib/netstandard20/Avalara.AvaTax.netstandard20.dll |
|
||||
| /microsoft.bcl.asyncinterfaces/6.0.0/lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/Microsoft.CSharp.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/Microsoft.VisualBasic.Core.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/Microsoft.Win32.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/Microsoft.Win32.Registry.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.AppContext.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Buffers.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Collections.Concurrent.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Collections.Immutable.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Collections.NonGeneric.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Collections.Specialized.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Collections.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ComponentModel.Annotations.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ComponentModel.DataAnnotations.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ComponentModel.EventBasedAsync.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ComponentModel.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ComponentModel.TypeConverter.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ComponentModel.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Configuration.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Console.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Core.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Data.Common.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Data.DataSetExtensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Data.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.Contracts.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.Debug.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.DiagnosticSource.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.FileVersionInfo.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.Process.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.StackTrace.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.TextWriterTraceListener.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.Tools.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.TraceSource.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.Tracing.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Drawing.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Dynamic.Runtime.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Formats.Asn1.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Formats.Tar.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Globalization.Calendars.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Globalization.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Globalization.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.Compression.Brotli.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.Compression.FileSystem.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.Compression.ZipFile.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.Compression.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.FileSystem.AccessControl.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.FileSystem.DriveInfo.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.FileSystem.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.FileSystem.Watcher.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.FileSystem.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.IsolatedStorage.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.MemoryMappedFiles.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.Pipes.AccessControl.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.Pipes.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.UnmanagedMemoryStream.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Linq.Expressions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Linq.Parallel.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Linq.Queryable.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Linq.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Memory.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Http.Json.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Http.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.HttpListener.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Mail.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.NameResolution.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.NetworkInformation.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Ping.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Quic.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Requests.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Security.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.ServicePoint.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Sockets.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.WebClient.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.WebHeaderCollection.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.WebProxy.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.WebSockets.Client.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.WebSockets.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Numerics.Vectors.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Numerics.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ObjectModel.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.DispatchProxy.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.Emit.ILGeneration.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.Emit.Lightweight.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.Emit.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.Metadata.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.TypeExtensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Resources.Reader.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Resources.ResourceManager.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Resources.Writer.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.CompilerServices.Unsafe.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.CompilerServices.VisualC.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Handles.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.InteropServices.JavaScript.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.InteropServices.RuntimeInformation.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.InteropServices.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Intrinsics.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Loader.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Numerics.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Serialization.Formatters.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Serialization.Json.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Serialization.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Serialization.Xml.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Serialization.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.AccessControl.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Claims.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.Algorithms.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.Cng.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.Csp.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.Encoding.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.OpenSsl.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.X509Certificates.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Principal.Windows.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Principal.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.SecureString.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ServiceModel.Web.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ServiceProcess.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Text.Encoding.CodePages.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Text.Encoding.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Text.Encoding.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Text.Encodings.Web.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Text.Json.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Text.RegularExpressions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Channels.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Overlapped.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Tasks.Dataflow.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Tasks.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Tasks.Parallel.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Tasks.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Thread.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.ThreadPool.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Timer.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Transactions.Local.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Transactions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ValueTuple.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Web.HttpUtility.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Web.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Windows.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.Linq.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.ReaderWriter.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.Serialization.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.XDocument.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.XPath.XDocument.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.XPath.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.XmlDocument.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.XmlSerializer.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/mscorlib.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/netstandard.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/Accessibility.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/Microsoft.VisualBasic.Forms.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/Microsoft.VisualBasic.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/Microsoft.Win32.Registry.AccessControl.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/Microsoft.Win32.SystemEvents.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/PresentationCore.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/PresentationFramework.Aero2.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/PresentationFramework.Aero.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/PresentationFramework.AeroLite.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/PresentationFramework.Classic.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/PresentationFramework.Luna.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/PresentationFramework.Royale.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/PresentationFramework.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/PresentationUI.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/ReachFramework.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.CodeDom.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.Configuration.ConfigurationManager.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.Design.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.Diagnostics.EventLog.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.Diagnostics.PerformanceCounter.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.DirectoryServices.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.Drawing.Common.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.Drawing.Design.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.Drawing.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.IO.Packaging.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.Printing.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.Resources.Extensions.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.Pkcs.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.ProtectedData.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.Xml.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.Security.Permissions.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.Threading.AccessControl.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.Windows.Controls.Ribbon.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.Windows.Extensions.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.Windows.Forms.Design.Editors.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.Windows.Forms.Design.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.Windows.Forms.Primitives.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.Windows.Forms.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.Windows.Input.Manipulations.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.Windows.Presentation.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/System.Xaml.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/UIAutomationClient.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/UIAutomationClientSideProviders.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/UIAutomationProvider.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/UIAutomationTypes.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/WindowsBase.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/7.0.2/ref/net7.0/WindowsFormsIntegration.dll |
|
||||
| /avalara.avatax/23.11.0/lib/netstandard2.0/Avalara.AvaTax.RestClient.dll |
|
||||
| /microsoft.bcl.asyncinterfaces/8.0.0/lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/Microsoft.CSharp.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/Microsoft.VisualBasic.Core.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/Microsoft.Win32.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/Microsoft.Win32.Registry.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.AppContext.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Buffers.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Collections.Concurrent.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Collections.Immutable.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Collections.NonGeneric.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Collections.Specialized.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Collections.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ComponentModel.Annotations.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ComponentModel.DataAnnotations.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ComponentModel.EventBasedAsync.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ComponentModel.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ComponentModel.TypeConverter.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ComponentModel.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Configuration.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Console.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Core.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Data.Common.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Data.DataSetExtensions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Data.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.Contracts.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.Debug.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.DiagnosticSource.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.FileVersionInfo.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.Process.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.StackTrace.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.TextWriterTraceListener.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.Tools.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.TraceSource.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Diagnostics.Tracing.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Drawing.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Dynamic.Runtime.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Formats.Asn1.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Formats.Tar.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Globalization.Calendars.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Globalization.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Globalization.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.Compression.Brotli.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.Compression.FileSystem.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.Compression.ZipFile.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.Compression.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.FileSystem.AccessControl.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.FileSystem.DriveInfo.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.FileSystem.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.FileSystem.Watcher.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.FileSystem.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.IsolatedStorage.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.MemoryMappedFiles.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.Pipes.AccessControl.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.Pipes.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.UnmanagedMemoryStream.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Linq.Expressions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Linq.Parallel.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Linq.Queryable.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Linq.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Memory.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Http.Json.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Http.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.HttpListener.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Mail.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.NameResolution.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.NetworkInformation.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Ping.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Quic.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Requests.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Security.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.ServicePoint.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Sockets.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.WebClient.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.WebHeaderCollection.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.WebProxy.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.WebSockets.Client.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.WebSockets.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Numerics.Vectors.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Numerics.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ObjectModel.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.DispatchProxy.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.Emit.ILGeneration.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.Emit.Lightweight.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.Emit.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.Metadata.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.TypeExtensions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Reflection.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Resources.Reader.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Resources.ResourceManager.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Resources.Writer.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.CompilerServices.Unsafe.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.CompilerServices.VisualC.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Handles.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.InteropServices.JavaScript.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.InteropServices.RuntimeInformation.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.InteropServices.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Intrinsics.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Loader.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Numerics.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Serialization.Formatters.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Serialization.Json.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Serialization.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Serialization.Xml.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.Serialization.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.AccessControl.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Claims.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.Algorithms.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.Cng.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.Csp.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.Encoding.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.OpenSsl.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.X509Certificates.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Principal.Windows.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.Principal.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.SecureString.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ServiceModel.Web.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ServiceProcess.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Text.Encoding.CodePages.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Text.Encoding.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Text.Encoding.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Text.Encodings.Web.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Text.Json.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Text.RegularExpressions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.Channels.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.Overlapped.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.Tasks.Dataflow.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.Tasks.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.Tasks.Parallel.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.Tasks.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.Thread.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.ThreadPool.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.Timer.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Transactions.Local.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Transactions.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.ValueTuple.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Web.HttpUtility.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Web.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Windows.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.Linq.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.ReaderWriter.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.Serialization.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.XDocument.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.XPath.XDocument.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.XPath.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.XmlDocument.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.XmlSerializer.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/mscorlib.dll |
|
||||
| /microsoft.netcore.app.ref/8.0.0/ref/net8.0/netstandard.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/Accessibility.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/Microsoft.VisualBasic.Forms.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/Microsoft.VisualBasic.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/Microsoft.Win32.Registry.AccessControl.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/Microsoft.Win32.SystemEvents.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/PresentationCore.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/PresentationFramework.Aero2.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/PresentationFramework.Aero.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/PresentationFramework.AeroLite.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/PresentationFramework.Classic.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/PresentationFramework.Luna.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/PresentationFramework.Royale.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/PresentationFramework.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/PresentationUI.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/ReachFramework.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.CodeDom.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.Configuration.ConfigurationManager.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.Design.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.Diagnostics.EventLog.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.Diagnostics.PerformanceCounter.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.DirectoryServices.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.Drawing.Common.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.Drawing.Design.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.Drawing.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.IO.Packaging.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.Printing.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.Resources.Extensions.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.Pkcs.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.ProtectedData.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.Security.Cryptography.Xml.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.Security.Permissions.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.Threading.AccessControl.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.Windows.Controls.Ribbon.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.Windows.Extensions.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.Windows.Forms.Design.Editors.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.Windows.Forms.Design.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.Windows.Forms.Primitives.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.Windows.Forms.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.Windows.Input.Manipulations.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.Windows.Presentation.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/System.Xaml.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/UIAutomationClient.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/UIAutomationClientSideProviders.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/UIAutomationProvider.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/UIAutomationTypes.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/WindowsBase.dll |
|
||||
| /microsoft.windowsdesktop.app.ref/8.0.0/ref/net8.0/WindowsFormsIntegration.dll |
|
||||
| /newtonsoft.json/12.0.1/lib/netstandard2.0/Newtonsoft.Json.dll |
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "7.0.102"
|
||||
"version": "8.0.100"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFrameworks>net7.0;net6.0;netcoreapp3.1;netstandard2.0;net48</TargetFrameworks>
|
||||
<TargetFrameworks>net8.0;net6.0;netcoreapp3.1;netstandard2.0;net48</TargetFrameworks>
|
||||
</PropertyGroup>
|
||||
|
||||
<Target Name="DeleteBinObjFolders" BeforeTargets="Clean">
|
||||
@@ -11,9 +11,9 @@
|
||||
</Target>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" />
|
||||
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" />
|
||||
<!-- The below causes DB-CHECK errors: -->
|
||||
<!-- <PackageReference Include="NUnit" Version="3.10.1" /> -->
|
||||
<PackageReference Include="Avalara.AvaTax" Version="21.10.0" />
|
||||
<PackageReference Include="Avalara.AvaTax" Version="23.11.0" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
||||
@@ -617,7 +617,13 @@ class ExprMissingType extends InstructionViolation {
|
||||
not instruction instanceof Opcodes::Arglist and
|
||||
not instruction instanceof Opcodes::Refanytype and
|
||||
instruction.getPushCount() >= 1 and
|
||||
count(instruction.getType()) != 1
|
||||
count(instruction.getType()) != 1 and
|
||||
// OS specific (osx) specific inconsistency
|
||||
not instruction
|
||||
.getImplementation()
|
||||
.getMethod()
|
||||
.hasFullyQualifiedName("System.Runtime.InteropServices.RuntimeInformation",
|
||||
"get_OSDescription")
|
||||
}
|
||||
|
||||
override string getMessage() { result = "Expression is missing getType()" }
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
| Assembly1, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null | no compilation |
|
||||
| Locations, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null | has compilation |
|
||||
| System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 | no compilation |
|
||||
| System.Console, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a | no compilation |
|
||||
| System.Console, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a | no compilation |
|
||||
| System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 | no compilation |
|
||||
| System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e | no compilation |
|
||||
| System.Runtime, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a | no compilation |
|
||||
| System.Runtime.Extensions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a | no compilation |
|
||||
| System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e | no compilation |
|
||||
| System.Runtime, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a | no compilation |
|
||||
| System.Runtime.Extensions, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a | no compilation |
|
||||
| mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 | no compilation |
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -5,10 +5,11 @@ private predicate isOsSpecific(Declaration d) {
|
||||
d.getFullyQualifiedName()
|
||||
.matches("%" +
|
||||
[
|
||||
"libobjc", "libproc", "libc", "Interop.Sys",
|
||||
"libobjc", "libproc", "libc", "Interop.OSReleaseFile", "Interop.Sys",
|
||||
"System.Runtime.InteropServices.ObjectiveC.ObjectiveCMarshal",
|
||||
"System.Diagnostics.Tracing.XplatEventLogger", "System.Threading.AutoreleasePool",
|
||||
"System.CLRConfig", "System.Diagnostics.Tracing.EventSource.<WriteEventString>",
|
||||
"System.IO.FileSystem.<TryCloneFile>"
|
||||
] + "%")
|
||||
}
|
||||
|
||||
|
||||
@@ -15,4 +15,3 @@
|
||||
| System.String System.Exception.get_Source(): dup, ldarg.0 [push: 1, pop: 0]; ldfld [push: 1, pop: 1]; dup [push: 2, pop: 1]; brtrue.s [push: 0, pop: 1]; pop [push: 0, pop: 1]; ldarg.0 [push: 1, pop: 0]; ldarg.0 [push: 1, pop: 0]; call [push: 1, pop: 1]; brtrue.s [push: 0, pop: 1]; ldnull [push: 1, pop: 0]; br.s [push: 0, pop: 0]; ldarg.0 [push: 1, pop: 0]; call [push: 1, pop: 1]; dup [push: 2, pop: 1]; brtrue.s [push: 0, pop: 1]; pop [push: 0, pop: 1]; ldnull [push: 1, pop: 0]; br.s [push: 0, pop: 0]; callvirt [push: 1, pop: 1]; callvirt [push: 1, pop: 1]; callvirt [push: 1, pop: 1]; callvirt [push: 1, pop: 1]; dup [push: 2, pop: 1]; brtrue.s [push: 0, pop: 1]; pop [push: 0, pop: 1]; ldstr [push: 1, pop: 0]; dup [push: 2, pop: 1] | Expression is missing getType() |
|
||||
| System.String System.Threading.TimerQueueTimer.get_DisplayString(): dup, ldarg.0 [push: 1, pop: 0]; ldfld [push: 1, pop: 1]; callvirt [push: 1, pop: 1]; callvirt [push: 1, pop: 1]; dup [push: 2, pop: 1]; brtrue.s [push: 0, pop: 1]; pop [push: 0, pop: 1]; ldnull [push: 1, pop: 0]; br.s [push: 0, pop: 0]; callvirt [push: 1, pop: 1]; stloc.0 [push: 0, pop: 1]; ldloc.0 [push: 1, pop: 0]; brfalse.s [push: 0, pop: 1]; ldloc.0 [push: 1, pop: 0]; ldstr [push: 1, pop: 0]; call [push: 1, pop: 2]; stloc.0 [push: 0, pop: 1]; ldc.i4.s [push: 1, pop: 0]; newarr [push: 1, pop: 1]; dup [push: 2, pop: 1]; ldc.i4.0 [push: 1, pop: 0]; ldstr [push: 1, pop: 0]; stelem.ref [push: 0, pop: 3]; dup [push: 2, pop: 1]; ldc.i4.1 [push: 1, pop: 0]; ldarg.0 [push: 1, pop: 0]; ldfld [push: 1, pop: 1]; ldc.i4.m1 [push: 1, pop: 0]; beq.s [push: 0, pop: 2]; ldarg.0 [push: 1, pop: 0]; ldfld [push: 1, pop: 1]; conv.r.un [push: 1, pop: 1]; conv.r8 [push: 1, pop: 1]; call [push: 1, pop: 1]; box [push: 1, pop: 1]; br.s [push: 0, pop: 0]; ldstr [push: 1, pop: 0]; dup [push: 2, pop: 1] | Expression is missing getType() |
|
||||
| System.String System.Threading.TimerQueueTimer.get_DisplayString(): dup, ldarg.0 [push: 1, pop: 0]; ldfld [push: 1, pop: 1]; callvirt [push: 1, pop: 1]; callvirt [push: 1, pop: 1]; dup [push: 2, pop: 1]; brtrue.s [push: 0, pop: 1]; pop [push: 0, pop: 1]; ldnull [push: 1, pop: 0]; br.s [push: 0, pop: 0]; callvirt [push: 1, pop: 1]; stloc.0 [push: 0, pop: 1]; ldloc.0 [push: 1, pop: 0]; brfalse.s [push: 0, pop: 1]; ldloc.0 [push: 1, pop: 0]; ldstr [push: 1, pop: 0]; call [push: 1, pop: 2]; stloc.0 [push: 0, pop: 1]; ldc.i4.s [push: 1, pop: 0]; newarr [push: 1, pop: 1]; dup [push: 2, pop: 1]; ldc.i4.0 [push: 1, pop: 0]; ldstr [push: 1, pop: 0]; stelem.ref [push: 0, pop: 3]; dup [push: 2, pop: 1]; ldc.i4.1 [push: 1, pop: 0]; ldarg.0 [push: 1, pop: 0]; ldfld [push: 1, pop: 1]; ldc.i4.m1 [push: 1, pop: 0]; beq.s [push: 0, pop: 2]; ldarg.0 [push: 1, pop: 0]; ldfld [push: 1, pop: 1]; conv.r.un [push: 1, pop: 1]; conv.r8 [push: 1, pop: 1]; call [push: 1, pop: 1]; box [push: 1, pop: 1]; br.s [push: 0, pop: 0]; ldstr [push: 1, pop: 0]; dup [push: 2, pop: 1]; brtrue.s [push: 0, pop: 1]; pop [push: 0, pop: 1]; ldnull [push: 1, pop: 0]; br.s [push: 0, pop: 0]; callvirt [push: 1, pop: 1]; stelem.ref [push: 0, pop: 3]; dup [push: 2, pop: 1]; ldc.i4.2 [push: 1, pop: 0]; ldstr [push: 1, pop: 0]; stelem.ref [push: 0, pop: 3]; dup [push: 2, pop: 1]; ldc.i4.3 [push: 1, pop: 0]; ldarg.0 [push: 1, pop: 0]; ldfld [push: 1, pop: 1]; ldc.i4.m1 [push: 1, pop: 0]; beq.s [push: 0, pop: 2]; ldarg.0 [push: 1, pop: 0]; ldfld [push: 1, pop: 1]; conv.r.un [push: 1, pop: 1]; conv.r8 [push: 1, pop: 1]; call [push: 1, pop: 1]; box [push: 1, pop: 1]; br.s [push: 0, pop: 0]; ldstr [push: 1, pop: 0]; dup [push: 2, pop: 1] | Expression is missing getType() |
|
||||
| System.Void System.Threading.UnmanagedThreadPoolWorkItem.Execute(): calli, ldarg.0 [push: 1, pop: 0]; ldfld [push: 1, pop: 1]; stloc.0 [push: 0, pop: 1]; ldarg.0 [push: 1, pop: 0]; ldfld [push: 1, pop: 1]; ldloc.0 [push: 1, pop: 0]; calli [push: 1, pop: 2] | Expression is missing getType() |
|
||||
|
||||
@@ -20,6 +20,8 @@ alwaysNonNull
|
||||
| System.Object Dataflow.NonNullMethods.ReturnsNonNullIndirect() |
|
||||
| System.Object Dataflow.NonNullMethods.get_VirtualNonNull() |
|
||||
| System.Object Dataflow.NonNullMethods.get_VirtualNonNullProperty() |
|
||||
| System.Reflection.AmbiguousMatchException System.ThrowHelper.GetAmbiguousMatchException(System.Attribute) |
|
||||
| System.Reflection.AmbiguousMatchException System.ThrowHelper.GetAmbiguousMatchException(System.Reflection.MemberInfo) |
|
||||
| System.String Dataflow.NonNullMethods.get_NonNullProperty2() |
|
||||
| System.String System.ThrowHelper.GetArgumentName(System.ExceptionArgument) |
|
||||
| System.Text.Encoder System.Text.ASCIIEncoding.GetEncoder() |
|
||||
@@ -37,11 +39,12 @@ alwaysThrows
|
||||
| System.Object System.ValueTuple.get_Item(System.Int32) | System.IndexOutOfRangeException | 0: newobj System.IndexOutOfRangeException..ctor, 1: throw |
|
||||
| System.Void System.Reflection.InvokerEmitUtil.ThrowHelper.Throw_NullReference_InvokeNullRefReturned() | System.NullReferenceException | 0: call System.SR.get_NullReference_InvokeNullRefReturned, 1: newobj System.NullReferenceException..ctor, 2: throw |
|
||||
| System.Void System.ThrowHelper.ArgumentOutOfRangeException_Enum_Value() | System.ArgumentOutOfRangeException | 0: ldstr "value", 1: call System.SR.get_ArgumentOutOfRange_Enum, 2: newobj System.ArgumentOutOfRangeException..ctor, 3: throw |
|
||||
| System.Void System.ThrowHelper.ThrowAccessViolationException() | System.AccessViolationException | 0: newobj System.AccessViolationException..ctor, 1: throw |
|
||||
| System.Void System.ThrowHelper.ThrowAddingDuplicateWithKeyArgumentException`1(!0) | System.ArgumentException | 0: ldarg.0, 1: box, 2: call System.ThrowHelper.GetAddingDuplicateWithKeyArgumentException, 3: throw |
|
||||
| System.Void System.ThrowHelper.ThrowAggregateException(System.Collections.Generic.List<System.Exception>) | System.AggregateException | 0: ldarg.0, 1: newobj System.AggregateException..ctor, 2: throw |
|
||||
| System.Void System.ThrowHelper.ThrowArgumentException_Arg_CannotBeNaN() | System.ArgumentException | 0: call System.SR.get_Arg_CannotBeNaN, 1: newobj System.ArgumentException..ctor, 2: throw |
|
||||
| System.Void System.ThrowHelper.ThrowArgumentException_ArgumentNull_TypedRefType() | System.ArgumentNullException | 0: ldstr "value", 1: call System.SR.get_ArgumentNull_TypedRefType, 2: newobj System.ArgumentNullException..ctor, 3: throw |
|
||||
| System.Void System.ThrowHelper.ThrowArgumentException_Argument_InvalidArrayType() | System.ArgumentException | 0: call System.SR.get_Argument_InvalidArrayType, 1: newobj System.ArgumentException..ctor, 2: throw |
|
||||
| System.Void System.ThrowHelper.ThrowArgumentException_Argument_IncompatibleArrayType() | System.ArgumentException | 0: call System.SR.get_Argument_IncompatibleArrayType, 1: newobj System.ArgumentException..ctor, 2: throw |
|
||||
| System.Void System.ThrowHelper.ThrowArgumentException_BadComparer(System.Object) | System.ArgumentException | 0: call System.SR.get_Arg_BogusIComparer, 1: ldarg.0, 2: call System.SR.Format, 3: newobj System.ArgumentException..ctor, 4: throw |
|
||||
| System.Void System.ThrowHelper.ThrowArgumentException_CannotExtractScalar(System.ExceptionArgument) | System.ArgumentException | 0: ldc.i4.s 31, 1: ldarg.0, 2: call System.ThrowHelper.GetArgumentException, 3: throw |
|
||||
| System.Void System.ThrowHelper.ThrowArgumentException_DestinationTooShort() | System.ArgumentException | 0: call System.SR.get_Argument_DestinationTooShort, 1: ldstr "destination", 2: newobj System.ArgumentException..ctor, 3: throw |
|
||||
@@ -62,13 +65,17 @@ alwaysThrows
|
||||
| System.Void System.ThrowHelper.ThrowArgumentOutOfRange_IndexMustBeLessException() | System.ArgumentOutOfRangeException | 0: ldc.i4.s 31, 1: ldc.i4.1, 2: call System.ThrowHelper.GetArgumentOutOfRangeException, 3: throw |
|
||||
| System.Void System.ThrowHelper.ThrowArgumentOutOfRange_IndexMustBeLessOrEqualException() | System.ArgumentOutOfRangeException | 0: ldc.i4.s 31, 1: ldc.i4.0, 2: call System.ThrowHelper.GetArgumentOutOfRangeException, 3: throw |
|
||||
| System.Void System.ThrowHelper.ThrowArgumentOutOfRange_Month(System.Int32) | System.ArgumentOutOfRangeException | 0: ldstr "month", 1: ldarg.0, 2: box, 3: call System.SR.get_ArgumentOutOfRange_Month, 4: newobj System.ArgumentOutOfRangeException..ctor, 5: throw |
|
||||
| System.Void System.ThrowHelper.ThrowArgumentOutOfRange_Range`1(System.String,!0,!0,!0) | System.ArgumentOutOfRangeException | 0: ldarg.0, 1: ldarg.1, 2: box, 3: call System.SR.get_ArgumentOutOfRange_Range, 4: ldarg.2, 5: box, 6: ldarg.3, 7: box, 8: call System.SR.Format, 9: newobj System.ArgumentOutOfRangeException..ctor, 10: throw |
|
||||
| System.Void System.ThrowHelper.ThrowArgumentOutOfRange_TimeSpanTooLong() | System.ArgumentOutOfRangeException | 0: ldnull, 1: call System.SR.get_Overflow_TimeSpanTooLong, 2: newobj System.ArgumentOutOfRangeException..ctor, 3: throw |
|
||||
| System.Void System.ThrowHelper.ThrowArgumentOutOfRange_Year() | System.ArgumentOutOfRangeException | 0: ldc.i4.s 31, 1: ldc.i4.5, 2: call System.ThrowHelper.GetArgumentOutOfRangeException, 3: throw |
|
||||
| System.Void System.ThrowHelper.ThrowArraySegmentCtorValidationFailedExceptions(System.Array,System.Int32,System.Int32) | System.Exception | 0: ldarg.0, 1: ldarg.1, 2: ldarg.2, 3: call System.ThrowHelper.GetArraySegmentCtorValidationFailedException, 4: throw |
|
||||
| System.Void System.ThrowHelper.ThrowArrayTypeMismatchException() | System.ArrayTypeMismatchException | 0: newobj System.ArrayTypeMismatchException..ctor, 1: throw |
|
||||
| System.Void System.ThrowHelper.ThrowCountArgumentOutOfRange_ArgumentOutOfRange_Count() | System.ArgumentOutOfRangeException | 0: ldc.i4.s 31, 1: ldc.i4.4, 2: call System.ThrowHelper.GetArgumentOutOfRangeException, 3: throw |
|
||||
| System.Void System.ThrowHelper.ThrowEndOfFileException() | System.Exception | 0: call System.ThrowHelper.CreateEndOfFileException, 1: throw |
|
||||
| System.Void System.ThrowHelper.ThrowFormatException_BadBoolean(System.ReadOnlySpan<System.Char>) | System.FormatException | 0: call System.SR.get_Format_BadBoolean, 1: ldarg.0, 2: newobj System.String..ctor, 3: call System.SR.Format, 4: newobj System.FormatException..ctor, 5: throw |
|
||||
| System.Void System.ThrowHelper.ThrowFormatException_BadFormatSpecifier() | System.FormatException | 0: call System.SR.get_Argument_BadFormatSpecifier, 1: newobj System.FormatException..ctor, 2: throw |
|
||||
| System.Void System.ThrowHelper.ThrowFormatException_NeedSingleChar() | System.FormatException | 0: call System.SR.get_Format_NeedSingleChar, 1: newobj System.FormatException..ctor, 2: throw |
|
||||
| System.Void System.ThrowHelper.ThrowFormatIndexOutOfRange() | System.FormatException | 0: call System.SR.get_Format_IndexOutOfRange, 1: newobj System.FormatException..ctor, 2: throw |
|
||||
| System.Void System.ThrowHelper.ThrowFormatInvalidString() | System.FormatException | 0: call System.SR.get_Format_InvalidString, 1: newobj System.FormatException..ctor, 2: throw |
|
||||
| System.Void System.ThrowHelper.ThrowIndexArgumentOutOfRange_NeedNonNegNumException() | System.ArgumentOutOfRangeException | 0: ldc.i4.s 31, 1: ldc.i4.s 31, 2: call System.ThrowHelper.GetArgumentOutOfRangeException, 3: throw |
|
||||
| System.Void System.ThrowHelper.ThrowIndexOutOfRangeException() | System.IndexOutOfRangeException | 0: newobj System.IndexOutOfRangeException..ctor, 1: throw |
|
||||
@@ -82,6 +89,7 @@ alwaysThrows
|
||||
| System.Void System.ThrowHelper.ThrowInvalidOperationException_InvalidOperation_EnumNotStarted() | System.InvalidOperationException | 0: call System.SR.get_InvalidOperation_EnumNotStarted, 1: newobj System.InvalidOperationException..ctor, 2: throw |
|
||||
| System.Void System.ThrowHelper.ThrowInvalidOperationException_InvalidOperation_EnumOpCantHappen() | System.InvalidOperationException | 0: call System.SR.get_InvalidOperation_EnumOpCantHappen, 1: newobj System.InvalidOperationException..ctor, 2: throw |
|
||||
| System.Void System.ThrowHelper.ThrowInvalidOperationException_InvalidOperation_NoValue() | System.InvalidOperationException | 0: call System.SR.get_InvalidOperation_NoValue, 1: newobj System.InvalidOperationException..ctor, 2: throw |
|
||||
| System.Void System.ThrowHelper.ThrowInvalidOperationException_InvalidUtf8() | System.InvalidOperationException | 0: call System.SR.get_InvalidOperation_InvalidUtf8, 1: newobj System.InvalidOperationException..ctor, 2: throw |
|
||||
| System.Void System.ThrowHelper.ThrowInvalidTypeWithPointersNotSupported(System.Type) | System.ArgumentException | 0: call System.SR.get_Argument_InvalidTypeWithPointersNotSupported, 1: ldarg.0, 2: call System.SR.Format, 3: newobj System.ArgumentException..ctor, 4: throw |
|
||||
| System.Void System.ThrowHelper.ThrowKeyNotFoundException`1(!0) | System.Collections.Generic.KeyNotFoundException | 0: ldarg.0, 1: box, 2: call System.ThrowHelper.GetKeyNotFoundException, 3: throw |
|
||||
| System.Void System.ThrowHelper.ThrowLengthArgumentOutOfRange_ArgumentOutOfRange_NeedNonNegNum() | System.ArgumentOutOfRangeException | 0: ldc.i4.s 31, 1: ldc.i4.s 31, 2: call System.ThrowHelper.GetArgumentOutOfRangeException, 3: throw |
|
||||
@@ -89,16 +97,17 @@ alwaysThrows
|
||||
| System.Void System.ThrowHelper.ThrowNotSupportedException_UnreadableStream() | System.NotSupportedException | 0: call System.SR.get_NotSupported_UnreadableStream, 1: newobj System.NotSupportedException..ctor, 2: throw |
|
||||
| System.Void System.ThrowHelper.ThrowNotSupportedException_UnseekableStream() | System.NotSupportedException | 0: call System.SR.get_NotSupported_UnseekableStream, 1: newobj System.NotSupportedException..ctor, 2: throw |
|
||||
| System.Void System.ThrowHelper.ThrowNotSupportedException_UnwritableStream() | System.NotSupportedException | 0: call System.SR.get_NotSupported_UnwritableStream, 1: newobj System.NotSupportedException..ctor, 2: throw |
|
||||
| System.Void System.ThrowHelper.ThrowNullReferenceException() | System.NullReferenceException | 0: call System.SR.get_Arg_NullArgumentNullRef, 1: newobj System.NullReferenceException..ctor, 2: throw |
|
||||
| System.Void System.ThrowHelper.ThrowObjectDisposedException(System.Object) | System.ObjectDisposedException | 0: ldarg.0, 1: brtrue.s 4:, 2: ldnull, 3: br.s 7:, 4: ldarg.0, 5: call System.Object.GetType, 6: callvirt System.Type.get_FullName, 7: newobj System.ObjectDisposedException..ctor, 8: throw |
|
||||
| System.Void System.ThrowHelper.ThrowObjectDisposedException(System.Type) | System.ObjectDisposedException | 0: ldarg.0, 1: brtrue.s 4:, 2: ldnull, 3: br.s 6:, 4: ldarg.0, 5: callvirt System.Type.get_FullName, 6: newobj System.ObjectDisposedException..ctor, 7: throw |
|
||||
| System.Void System.ThrowHelper.ThrowObjectDisposedException_FileClosed() | System.ObjectDisposedException | 0: ldnull, 1: call System.SR.get_ObjectDisposed_FileClosed, 2: newobj System.ObjectDisposedException..ctor, 3: throw |
|
||||
| System.Void System.ThrowHelper.ThrowObjectDisposedException_StreamClosed(System.String) | System.ObjectDisposedException | 0: ldarg.0, 1: call System.SR.get_ObjectDisposed_StreamClosed, 2: newobj System.ObjectDisposedException..ctor, 3: throw |
|
||||
| System.Void System.ThrowHelper.ThrowOutOfMemoryException() | System.OutOfMemoryException | 0: newobj System.OutOfMemoryException..ctor, 1: throw |
|
||||
| System.Void System.ThrowHelper.ThrowOutOfMemoryException_StringTooLong() | System.OutOfMemoryException | 0: call System.SR.get_OutOfMemory_StringTooLong, 1: newobj System.OutOfMemoryException..ctor, 2: throw |
|
||||
| System.Void System.ThrowHelper.ThrowOverflowException() | System.OverflowException | 0: newobj System.OverflowException..ctor, 1: throw |
|
||||
| System.Void System.ThrowHelper.ThrowOverflowException_TimeSpanTooLong() | System.OverflowException | 0: call System.SR.get_Overflow_TimeSpanTooLong, 1: newobj System.OverflowException..ctor, 2: throw |
|
||||
| System.Void System.ThrowHelper.ThrowStartIndexArgumentOutOfRange_ArgumentOutOfRange_IndexMustBeLess() | System.ArgumentOutOfRangeException | 0: ldc.i4.8, 1: ldc.i4.1, 2: call System.ThrowHelper.GetArgumentOutOfRangeException, 3: throw |
|
||||
| System.Void System.ThrowHelper.ThrowStartIndexArgumentOutOfRange_ArgumentOutOfRange_IndexMustBeLessOrEqual() | System.ArgumentOutOfRangeException | 0: ldc.i4.8, 1: ldc.i4.0, 2: call System.ThrowHelper.GetArgumentOutOfRangeException, 3: throw |
|
||||
| System.Void System.ThrowHelper.ThrowUnexpectedStateForKnownCallback(System.Object) | System.ArgumentOutOfRangeException | 0: ldstr "state", 1: ldarg.0, 2: call System.SR.get_Argument_UnexpectedStateForKnownCallback, 3: newobj System.ArgumentOutOfRangeException..ctor, 4: throw |
|
||||
| System.Void System.ThrowHelper.ThrowValueArgumentOutOfRange_NeedNonNegNumException() | System.ArgumentOutOfRangeException | 0: ldc.i4.7, 1: ldc.i4.s 31, 2: call System.ThrowHelper.GetArgumentOutOfRangeException, 3: throw |
|
||||
| System.Void System.ThrowHelper.ThrowWrongKeyTypeArgumentException`1(!0,System.Type) | System.ArgumentException | 0: ldarg.0, 1: box, 2: ldarg.1, 3: call System.ThrowHelper.GetWrongKeyTypeArgumentException, 4: throw |
|
||||
| System.Void System.ThrowHelper.ThrowWrongValueTypeArgumentException`1(!0,System.Type) | System.ArgumentException | 0: ldarg.0, 1: box, 2: ldarg.1, 3: call System.ThrowHelper.GetWrongValueTypeArgumentException, 4: throw |
|
||||
|
||||
@@ -64,6 +64,7 @@
|
||||
| System.Diagnostics.Tracing.EventTags | int |
|
||||
| System.Diagnostics.Tracing.EventTask | int |
|
||||
| System.Diagnostics.Tracing.ManifestEnvelope.ManifestFormats | byte |
|
||||
| System.Diagnostics.Tracing.NativeRuntimeEventSource.ContentionFlagsMap | byte |
|
||||
| System.Diagnostics.Tracing.NativeRuntimeEventSource.ThreadAdjustmentReasonMap | uint |
|
||||
| System.Diagnostics.Tracing.RuntimeEventSource.EventId | int |
|
||||
| System.Diagnostics.Tracing.TraceLoggingDataType | int |
|
||||
@@ -73,9 +74,11 @@
|
||||
| System.Exception.ExceptionMessageKind | int |
|
||||
| System.ExceptionArgument | int |
|
||||
| System.ExceptionResource | int |
|
||||
| System.GC.EnableNoGCRegionCallbackStatus | int |
|
||||
| System.GC.EndNoGCRegionStatus | int |
|
||||
| System.GC.GCConfigurationType | int |
|
||||
| System.GC.GC_ALLOC_FLAGS | int |
|
||||
| System.GC.RefreshMemoryStatus | int |
|
||||
| System.GC.StartNoGCRegionStatus | int |
|
||||
| System.GCCollectionMode | int |
|
||||
| System.GCKind | int |
|
||||
@@ -110,6 +113,7 @@
|
||||
| System.Globalization.TimeSpanStyles | int |
|
||||
| System.Globalization.UnicodeCategory | int |
|
||||
| System.Guid.GuidParseThrowStyle | byte |
|
||||
| System.Guid.ParseFailure | int |
|
||||
| System.HexConverter.Casing | uint |
|
||||
| System.IO.FileAccess | int |
|
||||
| System.IO.FileAttributes | int |
|
||||
@@ -162,26 +166,30 @@
|
||||
| System.Reflection.MemberTypes | int |
|
||||
| System.Reflection.MetadataTokenType | int |
|
||||
| System.Reflection.MethodAttributes | int |
|
||||
| System.Reflection.MethodBase.InvokerArgFlags | int |
|
||||
| System.Reflection.MethodBase.InvokerStrategy | int |
|
||||
| System.Reflection.MethodImplAttributes | int |
|
||||
| System.Reflection.MethodSemanticsAttributes | int |
|
||||
| System.Reflection.NullabilityInfoContext.NotAnnotatedStatus | int |
|
||||
| System.Reflection.NullabilityState | int |
|
||||
| System.Reflection.PInvokeAttributes | int |
|
||||
| System.Reflection.ParameterAttributes | int |
|
||||
| System.Reflection.ParameterCopyBackAction | byte |
|
||||
| System.Reflection.PortableExecutableKinds | int |
|
||||
| System.Reflection.ProcessorArchitecture | int |
|
||||
| System.Reflection.PropertyAttributes | int |
|
||||
| System.Reflection.ResourceAttributes | int |
|
||||
| System.Reflection.ResourceLocation | int |
|
||||
| System.Reflection.SignatureCallingConvention | byte |
|
||||
| System.Reflection.TypeAttributes | int |
|
||||
| System.Reflection.TypeNameParser.TokenType | int |
|
||||
| System.Resources.ResourceTypeCode | int |
|
||||
| System.Resources.UltimateResourceFallbackLocation | int |
|
||||
| System.Runtime.CompilerServices.CastHelpers.CastResult | int |
|
||||
| System.Runtime.CompilerServices.CastResult | int |
|
||||
| System.Runtime.CompilerServices.CompilationRelaxations | int |
|
||||
| System.Runtime.CompilerServices.LoadHint | int |
|
||||
| System.Runtime.CompilerServices.MethodCodeType | int |
|
||||
| System.Runtime.CompilerServices.MethodImplOptions | int |
|
||||
| System.Runtime.CompilerServices.UnsafeAccessorKind | int |
|
||||
| System.Runtime.ConstrainedExecution.Cer | int |
|
||||
| System.Runtime.ConstrainedExecution.Consistency | int |
|
||||
| System.Runtime.GCLargeObjectHeapCompactionMode | int |
|
||||
@@ -261,6 +269,7 @@
|
||||
| System.Threading.Tasks.CausalityRelation | int |
|
||||
| System.Threading.Tasks.CausalitySynchronousWork | int |
|
||||
| System.Threading.Tasks.ConcurrentExclusiveSchedulerPair.ProcessingMode | byte |
|
||||
| System.Threading.Tasks.ConfigureAwaitOptions | int |
|
||||
| System.Threading.Tasks.InternalTaskOptions | int |
|
||||
| System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags | int |
|
||||
| System.Threading.Tasks.Sources.ValueTaskSourceStatus | int |
|
||||
|
||||
@@ -1,8 +1,16 @@
|
||||
import semmle.code.cil.Types
|
||||
import semmle.code.csharp.commons.QualifiedName
|
||||
|
||||
predicate osSpecific(string qualifier, string name) {
|
||||
qualifier = "Interop.Sys" and
|
||||
(
|
||||
name = "LockType" or // doesn't exist on osx
|
||||
name = "NSSearchPathDirectory" // doesn't exist on linux.
|
||||
)
|
||||
}
|
||||
|
||||
from Enum e, string qualifier, string name
|
||||
where
|
||||
e.hasFullyQualifiedName(qualifier, name) and
|
||||
not (qualifier = "Interop.Sys" and name = "LockType") // doesn't exist on osx
|
||||
not osSpecific(qualifier, name)
|
||||
select getQualifiedName(qualifier, name), e.getUnderlyingType().toStringWithTypes()
|
||||
|
||||
@@ -2,6 +2,7 @@ fnptr
|
||||
| delegate* managed<!0,Int32> | 1 | Int32 | 0 |
|
||||
| delegate* managed<A,B> | 1 | B | 0 |
|
||||
| delegate* managed<B,A> | 1 | A | 0 |
|
||||
| delegate* managed<Byte&,Void> | 1 | void | 0 |
|
||||
| delegate* managed<Int32&,Object& modreq(OutAttribute),Int32& modreq(InAttribute),Int32&> | 3 | Int32& | 0 |
|
||||
| delegate* managed<Int32&,Object& modreq(OutAttribute),Int32> | 2 | Int32 | 0 |
|
||||
| delegate* managed<Int32*,Void*> | 1 | Void* | 0 |
|
||||
@@ -10,11 +11,13 @@ fnptr
|
||||
| delegate* managed<Object,Void> | 1 | void | 0 |
|
||||
| delegate* managed<Void*,Int32*> | 1 | Int32* | 0 |
|
||||
| delegate* managed<Void*,Object> | 1 | Object | 0 |
|
||||
| delegate* unmanaged<Byte*,Int32,Byte,Int64,Int64,EVENT_FILTER_DESCRIPTOR*,Void*,Void> | 7 | void | 9 |
|
||||
| delegate* unmanaged<Char*,IntPtr,Void> | 2 | void | 9 |
|
||||
| delegate* unmanaged<Int32,PosixSignal,Int32> | 2 | Int32 | 9 |
|
||||
| delegate* unmanaged<IntPtr,Guid*,IntPtr*,Int32> | 3 | Int32 | 9 |
|
||||
| delegate* unmanaged<IntPtr,Int32> | 1 | Int32 | 9 |
|
||||
| delegate* unmanaged<IntPtr,Void> | 1 | void | 9 |
|
||||
| delegate* unmanaged<NoGCRegionCallbackFinalizerWorkItem*,Void> | 1 | void | 9 |
|
||||
| delegate* unmanaged<Void*,Byte*,Void> | 2 | void | 9 |
|
||||
| delegate* unmanaged<Void*,Void*,Void*,GCConfigurationType,Int64,Void> | 5 | void | 9 |
|
||||
| delegate* unmanaged<Void> | 0 | void | 9 |
|
||||
@@ -23,6 +26,7 @@ params
|
||||
| delegate* managed<!0,Int32> | 0 | Parameter 0 of delegate* managed<!0,Int32> | !0 |
|
||||
| delegate* managed<A,B> | 0 | Parameter 0 of delegate* managed<A,B> | A |
|
||||
| delegate* managed<B,A> | 0 | Parameter 0 of delegate* managed<B,A> | B |
|
||||
| delegate* managed<Byte&,Void> | 0 | Parameter 0 of delegate* managed<Byte&,Void> | Byte& |
|
||||
| delegate* managed<Int32&,Object& modreq(OutAttribute),Int32& modreq(InAttribute),Int32&> | 0 | Parameter 0 of delegate* managed<Int32&,Object& modreq(OutAttribute),Int32& modreq(InAttribute),Int32&> | Int32& |
|
||||
| delegate* managed<Int32&,Object& modreq(OutAttribute),Int32& modreq(InAttribute),Int32&> | 1 | Parameter 1 of delegate* managed<Int32&,Object& modreq(OutAttribute),Int32& modreq(InAttribute),Int32&> | Object& |
|
||||
| delegate* managed<Int32&,Object& modreq(OutAttribute),Int32& modreq(InAttribute),Int32&> | 2 | Parameter 2 of delegate* managed<Int32&,Object& modreq(OutAttribute),Int32& modreq(InAttribute),Int32&> | Int32& |
|
||||
@@ -35,6 +39,13 @@ params
|
||||
| delegate* managed<Object,Void> | 0 | Parameter 0 of delegate* managed<Object,Void> | Object |
|
||||
| delegate* managed<Void*,Int32*> | 0 | Parameter 0 of delegate* managed<Void*,Int32*> | Void* |
|
||||
| delegate* managed<Void*,Object> | 0 | Parameter 0 of delegate* managed<Void*,Object> | Void* |
|
||||
| delegate* unmanaged<Byte*,Int32,Byte,Int64,Int64,EVENT_FILTER_DESCRIPTOR*,Void*,Void> | 0 | Parameter 0 of delegate* unmanaged<Byte*,Int32,Byte,Int64,Int64,EVENT_FILTER_DESCRIPTOR*,Void*,Void> | Byte* |
|
||||
| delegate* unmanaged<Byte*,Int32,Byte,Int64,Int64,EVENT_FILTER_DESCRIPTOR*,Void*,Void> | 1 | Parameter 1 of delegate* unmanaged<Byte*,Int32,Byte,Int64,Int64,EVENT_FILTER_DESCRIPTOR*,Void*,Void> | Int32 |
|
||||
| delegate* unmanaged<Byte*,Int32,Byte,Int64,Int64,EVENT_FILTER_DESCRIPTOR*,Void*,Void> | 2 | Parameter 2 of delegate* unmanaged<Byte*,Int32,Byte,Int64,Int64,EVENT_FILTER_DESCRIPTOR*,Void*,Void> | Byte |
|
||||
| delegate* unmanaged<Byte*,Int32,Byte,Int64,Int64,EVENT_FILTER_DESCRIPTOR*,Void*,Void> | 3 | Parameter 3 of delegate* unmanaged<Byte*,Int32,Byte,Int64,Int64,EVENT_FILTER_DESCRIPTOR*,Void*,Void> | Int64 |
|
||||
| delegate* unmanaged<Byte*,Int32,Byte,Int64,Int64,EVENT_FILTER_DESCRIPTOR*,Void*,Void> | 4 | Parameter 4 of delegate* unmanaged<Byte*,Int32,Byte,Int64,Int64,EVENT_FILTER_DESCRIPTOR*,Void*,Void> | Int64 |
|
||||
| delegate* unmanaged<Byte*,Int32,Byte,Int64,Int64,EVENT_FILTER_DESCRIPTOR*,Void*,Void> | 5 | Parameter 5 of delegate* unmanaged<Byte*,Int32,Byte,Int64,Int64,EVENT_FILTER_DESCRIPTOR*,Void*,Void> | EVENT_FILTER_DESCRIPTOR* |
|
||||
| delegate* unmanaged<Byte*,Int32,Byte,Int64,Int64,EVENT_FILTER_DESCRIPTOR*,Void*,Void> | 6 | Parameter 6 of delegate* unmanaged<Byte*,Int32,Byte,Int64,Int64,EVENT_FILTER_DESCRIPTOR*,Void*,Void> | Void* |
|
||||
| delegate* unmanaged<Char*,IntPtr,Void> | 0 | Parameter 0 of delegate* unmanaged<Char*,IntPtr,Void> | Char* |
|
||||
| delegate* unmanaged<Char*,IntPtr,Void> | 1 | Parameter 1 of delegate* unmanaged<Char*,IntPtr,Void> | IntPtr |
|
||||
| delegate* unmanaged<Int32,PosixSignal,Int32> | 0 | Parameter 0 of delegate* unmanaged<Int32,PosixSignal,Int32> | Int32 |
|
||||
@@ -44,6 +55,7 @@ params
|
||||
| delegate* unmanaged<IntPtr,Guid*,IntPtr*,Int32> | 2 | Parameter 2 of delegate* unmanaged<IntPtr,Guid*,IntPtr*,Int32> | IntPtr* |
|
||||
| delegate* unmanaged<IntPtr,Int32> | 0 | Parameter 0 of delegate* unmanaged<IntPtr,Int32> | IntPtr |
|
||||
| delegate* unmanaged<IntPtr,Void> | 0 | Parameter 0 of delegate* unmanaged<IntPtr,Void> | IntPtr |
|
||||
| delegate* unmanaged<NoGCRegionCallbackFinalizerWorkItem*,Void> | 0 | Parameter 0 of delegate* unmanaged<NoGCRegionCallbackFinalizerWorkItem*,Void> | NoGCRegionCallbackFinalizerWorkItem* |
|
||||
| delegate* unmanaged<Void*,Byte*,Void> | 0 | Parameter 0 of delegate* unmanaged<Void*,Byte*,Void> | Void* |
|
||||
| delegate* unmanaged<Void*,Byte*,Void> | 1 | Parameter 1 of delegate* unmanaged<Void*,Byte*,Void> | Byte* |
|
||||
| delegate* unmanaged<Void*,Void*,Void*,GCConfigurationType,Int64,Void> | 0 | Parameter 0 of delegate* unmanaged<Void*,Void*,Void*,GCConfigurationType,Int64,Void> | Void* |
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
| AsROImpl | System.Runtime.InteropServices.InAttribute | modreq |
|
||||
| AsRef | System.Runtime.InteropServices.InAttribute | modreq |
|
||||
| EventWriteTransfer | System.Runtime.InteropServices.InAttribute | modreq |
|
||||
| GetPinnableReference | System.Runtime.InteropServices.InAttribute | modreq |
|
||||
@@ -8,12 +9,13 @@
|
||||
| _canSeek | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| _cancelCompleted | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| _container | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| _fullyInitialized | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| _first | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| _head | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| _idsThatDoNotTrackAllValues | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| _initialized | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| _isWriterInProgress | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| _kernelEvent | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| _last | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| _localTimeZone | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| _next | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| _oldKeepAlive | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
@@ -43,7 +45,6 @@
|
||||
| m_completionEvent | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| m_continuationObject | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| m_currentCount | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| m_declaringType | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| m_etwProvider | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| m_eventData | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| m_eventObj | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
@@ -51,18 +52,14 @@
|
||||
| m_exceptionalChildren | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| m_exceptionsHolder | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| m_faultExceptions | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| m_first | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| m_head | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| m_headIndex | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| m_internalCancellationRequested | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| m_isHandled | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| m_last | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| m_lock | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| m_mask | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| m_nameIsCached | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| m_rawManifest | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| m_stateFlags | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| m_tail | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| m_tailIndex | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| m_taskSchedulerId | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| m_waitHandle | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
@@ -92,15 +89,16 @@
|
||||
| s_japaneseEraInfo | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| s_osArchPlusOne | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| s_osVersion | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| s_privilegedProcess | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| s_processId | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| s_processPath | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| s_provider | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| s_providers | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| s_regionNames | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| s_systemPageSize | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| s_useNet6KeyParser | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| s_userDefaultCulture | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| s_userDefaultUICulture | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| s_zhtwDTFI | System.Runtime.CompilerServices.IsVolatile | modreq |
|
||||
| set_IsDerived | System.Runtime.CompilerServices.IsExternalInit | modreq |
|
||||
| set_IsOptional | System.Runtime.CompilerServices.IsExternalInit | modreq |
|
||||
| set_Prop2 | System.Runtime.CompilerServices.IsExternalInit | modreq |
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -58,14 +58,20 @@ private predicate exclude(string s) {
|
||||
"Parameter 1 of System.CLRConfig.GetConfigBoolValue",
|
||||
"Parameter 1 of System.Runtime.InteropServices.ObjectiveC.ObjectiveCMarshal.CreateReferenceTrackingHandleInternal",
|
||||
"Parameter 2 of System.Runtime.InteropServices.ObjectiveC.ObjectiveCMarshal.CreateReferenceTrackingHandleInternal",
|
||||
"Parameter 2 of Interop.OSReleaseFile.<GetPrettyName>g__TryGetFieldValue|1_0",
|
||||
"Parameter 2 of System.Runtime.InteropServices.ObjectiveC.ObjectiveCMarshal.InvokeUnhandledExceptionPropagation",
|
||||
"Parameter 3 of System.IO.FileSystem.<TryCloneFile>g__TryCloneFile|5_0",
|
||||
"Parameter 3 of System.IO.FileSystem.TryCloneFile",
|
||||
"Parameter 6 of Microsoft.Win32.SafeHandles.SafeFileHandle.OpenNoFollowSymlink",
|
||||
"Local variable 1 of method Interop.libobjc.NSOperatingSystemVersion_objc_msgSend_stret",
|
||||
"Local variable 1 of method System.Diagnostics.Tracing.XplatEventLogger.LogEventSource",
|
||||
"Local variable 2 of method System.Runtime.InteropServices.ObjectiveC.ObjectiveCMarshal.CreateReferenceTrackingHandleInternal",
|
||||
"Local variable 3 of method System.Diagnostics.Tracing.XplatEventLogger.LogEventSource",
|
||||
"Local variable 4 of method System.CLRConfig.GetConfigBoolValue",
|
||||
"Local variable 4 of method System.Runtime.InteropServices.ObjectiveC.ObjectiveCMarshal.CreateReferenceTrackingHandleInternal",
|
||||
"Local variable 5 of method Interop.OSReleaseFile.<GetPrettyName>g__TryGetFieldValue|1_0",
|
||||
"Local variable 5 of method System.Diagnostics.Tracing.XplatEventLogger.LogEventSource",
|
||||
"Local variable 13 of method Interop.procfs.TryParseStatusFile",
|
||||
"Parameter 0 of System.Diagnostics.Tracing.XplatEventLogger.AppendByteArrayAsHexString",
|
||||
"Parameter 1 of System.Diagnostics.Tracing.XplatEventLogger.MinimalJsonserializer"
|
||||
]
|
||||
|
||||
@@ -2,12 +2,15 @@
|
||||
| Boolean | IComparable<Boolean> |
|
||||
| Boolean | IConvertible |
|
||||
| Boolean | IEquatable<Boolean> |
|
||||
| Boolean | IParsable<Boolean> |
|
||||
| Boolean | ISpanParsable<Boolean> |
|
||||
| Boolean | Object |
|
||||
| Boolean | ValueType |
|
||||
| Boolean | dynamic |
|
||||
| Char | IAdditionOperators<Char,Char,Char> |
|
||||
| Char | IAdditiveIdentity<Char,Char> |
|
||||
| Char | IBinaryInteger<Char> |
|
||||
| Char | IBinaryIntegerParseAndFormatInfo<Char> |
|
||||
| Char | IBinaryNumber<Char> |
|
||||
| Char | IBitwiseOperators<Char,Char,Char> |
|
||||
| Char | IComparable |
|
||||
@@ -34,6 +37,9 @@
|
||||
| Char | IUnaryNegationOperators<Char,Char> |
|
||||
| Char | IUnaryPlusOperators<Char,Char> |
|
||||
| Char | IUnsignedNumber<Char> |
|
||||
| Char | IUtf8SpanFormattable |
|
||||
| Char | IUtf8SpanParsable<Char> |
|
||||
| Char | IUtfChar<Char> |
|
||||
| Char | Object |
|
||||
| Char | ValueType |
|
||||
| Char | dynamic |
|
||||
@@ -44,6 +50,7 @@
|
||||
| Int32 | IAdditionOperators<Int32,Int32,Int32> |
|
||||
| Int32 | IAdditiveIdentity<Int32,Int32> |
|
||||
| Int32 | IBinaryInteger<Int32> |
|
||||
| Int32 | IBinaryIntegerParseAndFormatInfo<Int32> |
|
||||
| Int32 | IBinaryNumber<Int32> |
|
||||
| Int32 | IBitwiseOperators<Int32,Int32,Int32> |
|
||||
| Int32 | IComparable |
|
||||
@@ -70,12 +77,15 @@
|
||||
| Int32 | ISubtractionOperators<Int32,Int32,Int32> |
|
||||
| Int32 | IUnaryNegationOperators<Int32,Int32> |
|
||||
| Int32 | IUnaryPlusOperators<Int32,Int32> |
|
||||
| Int32 | IUtf8SpanFormattable |
|
||||
| Int32 | IUtf8SpanParsable<Int32> |
|
||||
| Int32 | Object |
|
||||
| Int32 | ValueType |
|
||||
| Int32 | dynamic |
|
||||
| Nullable<Int32> | IAdditionOperators<Int32,Int32,Int32> |
|
||||
| Nullable<Int32> | IAdditiveIdentity<Int32,Int32> |
|
||||
| Nullable<Int32> | IBinaryInteger<Int32> |
|
||||
| Nullable<Int32> | IBinaryIntegerParseAndFormatInfo<Int32> |
|
||||
| Nullable<Int32> | IBinaryNumber<Int32> |
|
||||
| Nullable<Int32> | IBitwiseOperators<Int32,Int32,Int32> |
|
||||
| Nullable<Int32> | IComparable |
|
||||
@@ -102,6 +112,8 @@
|
||||
| Nullable<Int32> | ISubtractionOperators<Int32,Int32,Int32> |
|
||||
| Nullable<Int32> | IUnaryNegationOperators<Int32,Int32> |
|
||||
| Nullable<Int32> | IUnaryPlusOperators<Int32,Int32> |
|
||||
| Nullable<Int32> | IUtf8SpanFormattable |
|
||||
| Nullable<Int32> | IUtf8SpanParsable<Int32> |
|
||||
| Nullable<Int32> | Object |
|
||||
| Nullable<Int32> | ValueType |
|
||||
| Nullable<Int32> | dynamic |
|
||||
|
||||
@@ -13,5 +13,6 @@ where
|
||||
|
||||
s2 != "FormatParam" and
|
||||
s2 != "StringOrCharArray" and
|
||||
s2 != "EventSourceActivity"
|
||||
s2 != "EventSourceActivity" and
|
||||
s2 != "EventSourcePrimitive"
|
||||
select s1, s2 order by s1, s2
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
type
|
||||
| file://:0:0:0:0 | delegate* default<A,B> | B | DefaultCallingConvention |
|
||||
| file://:0:0:0:0 | delegate* default<B,A> | A | DefaultCallingConvention |
|
||||
| file://:0:0:0:0 | delegate* default<Byte ref,Void> | Void | DefaultCallingConvention |
|
||||
| file://:0:0:0:0 | delegate* default<Int32 ref,Object out,Int32 in,Int32 ref> | ref int | DefaultCallingConvention |
|
||||
| file://:0:0:0:0 | delegate* default<Int32 ref,Object out,Int32 ref readonly> | readonly int | DefaultCallingConvention |
|
||||
| file://:0:0:0:0 | delegate* default<Int32*,Void*> | Void* | DefaultCallingConvention |
|
||||
@@ -11,10 +12,12 @@ type
|
||||
| file://:0:0:0:0 | delegate* default<Void*,Int32*> | int* | DefaultCallingConvention |
|
||||
| file://:0:0:0:0 | delegate* default<Void*,Object> | object | DefaultCallingConvention |
|
||||
| file://:0:0:0:0 | delegate* stdcall<Int32 ref,Object out,T,Void> | Void | StdCallCallingConvention |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<Byte*,Int32,Byte,Int64,Int64,EVENT_FILTER_DESCRIPTOR*,Void*,Void> | Void | UnmanagedCallingConvention |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<Char*,IntPtr,Void> | Void | UnmanagedCallingConvention |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<Int32,PosixSignal,Int32> | int | UnmanagedCallingConvention |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<IntPtr,Int32> | int | UnmanagedCallingConvention |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<IntPtr,Void> | Void | UnmanagedCallingConvention |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<NoGCRegionCallbackFinalizerWorkItem*,Void> | Void | UnmanagedCallingConvention |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<Void*,Byte*,Void> | Void | UnmanagedCallingConvention |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<Void*,Void*,Void*,GCConfigurationType,Int64,Void> | Void | UnmanagedCallingConvention |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<Void> | Void | UnmanagedCallingConvention |
|
||||
@@ -22,6 +25,7 @@ unmanagedCallingConvention
|
||||
parameter
|
||||
| file://:0:0:0:0 | delegate* default<A,B> | 0 | file://:0:0:0:0 | | A |
|
||||
| file://:0:0:0:0 | delegate* default<B,A> | 0 | file://:0:0:0:0 | | B |
|
||||
| file://:0:0:0:0 | delegate* default<Byte ref,Void> | 0 | file://:0:0:0:0 | | ref byte! |
|
||||
| file://:0:0:0:0 | delegate* default<Int32 ref,Object out,Int32 in,Int32 ref> | 0 | file://:0:0:0:0 | | ref int! |
|
||||
| file://:0:0:0:0 | delegate* default<Int32 ref,Object out,Int32 in,Int32 ref> | 1 | file://:0:0:0:0 | `1 | out object? |
|
||||
| file://:0:0:0:0 | delegate* default<Int32 ref,Object out,Int32 in,Int32 ref> | 2 | file://:0:0:0:0 | `2 | readonly int! |
|
||||
@@ -38,12 +42,20 @@ parameter
|
||||
| file://:0:0:0:0 | delegate* stdcall<Int32 ref,Object out,T,Void> | 0 | file://:0:0:0:0 | | ref int! |
|
||||
| file://:0:0:0:0 | delegate* stdcall<Int32 ref,Object out,T,Void> | 1 | file://:0:0:0:0 | `1 | out object? |
|
||||
| file://:0:0:0:0 | delegate* stdcall<Int32 ref,Object out,T,Void> | 2 | file://:0:0:0:0 | `2 | T |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<Byte*,Int32,Byte,Int64,Int64,EVENT_FILTER_DESCRIPTOR*,Void*,Void> | 0 | file://:0:0:0:0 | | byte*! |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<Byte*,Int32,Byte,Int64,Int64,EVENT_FILTER_DESCRIPTOR*,Void*,Void> | 1 | file://:0:0:0:0 | `1 | int! |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<Byte*,Int32,Byte,Int64,Int64,EVENT_FILTER_DESCRIPTOR*,Void*,Void> | 2 | file://:0:0:0:0 | `2 | byte! |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<Byte*,Int32,Byte,Int64,Int64,EVENT_FILTER_DESCRIPTOR*,Void*,Void> | 3 | file://:0:0:0:0 | `3 | long! |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<Byte*,Int32,Byte,Int64,Int64,EVENT_FILTER_DESCRIPTOR*,Void*,Void> | 4 | file://:0:0:0:0 | `4 | long! |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<Byte*,Int32,Byte,Int64,Int64,EVENT_FILTER_DESCRIPTOR*,Void*,Void> | 5 | file://:0:0:0:0 | `5 | EVENT_FILTER_DESCRIPTOR*! |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<Byte*,Int32,Byte,Int64,Int64,EVENT_FILTER_DESCRIPTOR*,Void*,Void> | 6 | file://:0:0:0:0 | `6 | Void*! |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<Char*,IntPtr,Void> | 0 | file://:0:0:0:0 | | char*! |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<Char*,IntPtr,Void> | 1 | file://:0:0:0:0 | `1 | IntPtr! |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<Int32,PosixSignal,Int32> | 0 | file://:0:0:0:0 | | int! |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<Int32,PosixSignal,Int32> | 1 | file://:0:0:0:0 | `1 | PosixSignal! |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<IntPtr,Int32> | 0 | file://:0:0:0:0 | | IntPtr! |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<IntPtr,Void> | 0 | file://:0:0:0:0 | | IntPtr! |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<NoGCRegionCallbackFinalizerWorkItem*,Void> | 0 | file://:0:0:0:0 | | NoGCRegionCallbackFinalizerWorkItem*! |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<Void*,Byte*,Void> | 0 | file://:0:0:0:0 | | Void*! |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<Void*,Byte*,Void> | 1 | file://:0:0:0:0 | `1 | byte*! |
|
||||
| file://:0:0:0:0 | delegate* unmanaged<Void*,Void*,Void*,GCConfigurationType,Int64,Void> | 0 | file://:0:0:0:0 | | Void*! |
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<OutputPath>bin\</OutputPath>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<OutputPath>bin\</OutputPath>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<OutputPath>bin\</OutputPath>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<OutputPath>bin\</OutputPath>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<OutputPath>bin\</OutputPath>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<OutputPath>bin\</OutputPath>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<OutputPath>bin\</OutputPath>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<OutputPath>bin\</OutputPath>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<OutputPath>bin\</OutputPath>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<OutputPath>bin\</OutputPath>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<OutputPath>bin\</OutputPath>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<OutputPath>bin\</OutputPath>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<OutputPath>bin\</OutputPath>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<OutputPath>bin\</OutputPath>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<OutputPath>bin\</OutputPath>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<OutputPath>bin\</OutputPath>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<OutputPath>bin\</OutputPath>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<OutputPath>bin\</OutputPath>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user