Skip to content

Commit 78cf008

Browse files
authored
Merge pull request #29 from I-RzR-I/fix/RemoveUnusedReference
Fix/remove unused reference
2 parents f3c9147 + d6626cb commit 78cf008

File tree

3 files changed

+7
-16
lines changed

3 files changed

+7
-16
lines changed

docs/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,4 +123,7 @@
123123
-> Add new tests for `AsNotNull` methods;<br />
124124
-> Add `EnumerateUtils` enumerable utils some tests;<br />
125125
-> Adjust AES encryption(`AesEncryptString`, `AesDecryptString`) and expose iv as input;<br />
126-
-> Adjust dynamic property/ies select avoid `System.Linq.Dynamic.Core`;<br />
126+
-> Adjust dynamic property/ies select avoid `System.Linq.Dynamic.Core`;<br />
127+
128+
### **v2.0.1.8588**
129+
-> Remove unused package `Microsoft.CodeAnalysis.Common`;<br />

src/DomainCommonExtensions/DomainCommonExtensions.csproj

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -78,18 +78,6 @@
7878
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
7979
</ItemGroup>
8080

81-
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
82-
<PackageReference Include="Microsoft.CodeAnalysis.Common">
83-
<Version>4.2.0</Version>
84-
</PackageReference>
85-
</ItemGroup>
86-
87-
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">
88-
<PackageReference Include="Microsoft.CodeAnalysis.Common">
89-
<Version>4.2.0</Version>
90-
</PackageReference>
91-
</ItemGroup>
92-
9381
<ProjectExtensions>
9482
<VisualStudio>
9583
<UserProperties BuildVersion_StartDate="2022/8/22" />

src/shared/GeneralAssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@
4747
[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.MainAssembly)]
4848
#endif
4949

50-
[assembly: AssemblyVersion("2.0.0.0")]
51-
[assembly: AssemblyFileVersion("2.0.0.0")]
52-
[assembly: AssemblyInformationalVersion("2.0.0.0")]
50+
[assembly: AssemblyVersion("2.0.1.8588")]
51+
[assembly: AssemblyFileVersion("2.0.1.8588")]
52+
[assembly: AssemblyInformationalVersion("2.0.1.8588")]

0 commit comments

Comments
 (0)