Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTlakaelel Axayakatl Ceja <tlakaelel.ceja@microsoft.com>2022-10-24 21:44:46 +0300
committerGitHub <noreply@github.com>2022-10-24 21:44:46 +0300
commit4a51257b6ac207cb7b0a51b34bfb3eab5d0dfae8 (patch)
tree200bf397bcbea4d10ba425f06deeb62fe7d91d76
parent9abbff627af1e6093364ad6fc1a39e103824131d (diff)
Rename packages to not clash with the official cecil package name, Microsoft.DotNet.Cecil and Microsoft.DotNet.Cecil.Pdb are only internal packages (#48)
-rw-r--r--Mono.Cecil.csproj2
-rw-r--r--symbols/pdb/Mono.Cecil.Pdb.csproj2
2 files changed, 2 insertions, 2 deletions
diff --git a/Mono.Cecil.csproj b/Mono.Cecil.csproj
index b1c5a14..5581766 100644
--- a/Mono.Cecil.csproj
+++ b/Mono.Cecil.csproj
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(ToolsFramework)</TargetFramework>
- <PackageId>Mono.Cecil</PackageId>
+ <PackageId>Microsoft.DotNet.Cecil</PackageId>
<IsPackable>true</IsPackable>
</PropertyGroup>
<ItemGroup>
diff --git a/symbols/pdb/Mono.Cecil.Pdb.csproj b/symbols/pdb/Mono.Cecil.Pdb.csproj
index 5db1ef3..d37b754 100644
--- a/symbols/pdb/Mono.Cecil.Pdb.csproj
+++ b/symbols/pdb/Mono.Cecil.Pdb.csproj
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(ToolsFramework)</TargetFramework>
- <PackageId>Mono.Cecil.Pdb</PackageId>
+ <PackageId>Microsoft.DotNet.Cecil.Pdb</PackageId>
<IsPackable>true</IsPackable>
<NoWarn>0649</NoWarn>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>