|
9 | 9 |
|
10 | 10 | <PropertyGroup> |
11 | 11 | <PackageId>Posseth.NamedArguments.AnalyzerAndFixer</PackageId> |
12 | | - <PackageVersion>1.0.1.4</PackageVersion> |
| 12 | + <PackageVersion>1.0.1.5</PackageVersion> |
13 | 13 | <Authors>MPCoreDeveloper</Authors> |
14 | 14 | <PackageLicenseExpression>MIT</PackageLicenseExpression> |
15 | 15 | <PackageProjectUrl>https://github.com/MPCoreDeveloper/Posseth.NamedArguments.AnalyzerAndFixer</PackageProjectUrl> |
16 | 16 | <RepositoryUrl>https://github.com/MPCoreDeveloper/Posseth.NamedArguments.AnalyzerAndFixer</RepositoryUrl> |
17 | 17 | <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> |
18 | 18 | <Description>This tool analyzes method calls to ensure they use named arguments and provides an option to automatically convert positional arguments to named arguments. For example, it can transform `TestMethod(1, 2)` into `TestMethod(x: 1, y: 2)`. |
19 | 19 | </Description> |
20 | | - <PackageReleaseNotes>Now the full path is shown of the analyzed argument</PackageReleaseNotes> |
| 20 | + <PackageReleaseNotes>Namespace discovery change/fix, discovered namespace path is shown</PackageReleaseNotes> |
21 | 21 | <Copyright>Free to use , distribute and modify </Copyright> |
22 | 22 | <PackageTags>NamedArguments;AnalyzerAndFixer;analyzers;</PackageTags> |
23 | 23 | <DevelopmentDependency>true</DevelopmentDependency> |
24 | 24 | <NoPackageAnalysis>true</NoPackageAnalysis> |
25 | 25 | <TargetsForTfmSpecificContentInPackage>$(TargetsForTfmSpecificContentInPackage);_AddAnalyzersToOutput</TargetsForTfmSpecificContentInPackage> |
26 | 26 | <Title>Named Arguments Analyzer and Fixer</Title> |
27 | | - <Version>1.1.4</Version> |
| 27 | + <Version>1.1.5</Version> |
28 | 28 | <Company>Posseth Software</Company> |
29 | 29 | <Product>Posseth.NamedArguments.AnalyzerAndFixer</Product> |
30 | 30 | <PackageIcon>logo.jpeg</PackageIcon> |
|
33 | 33 | </PropertyGroup> |
34 | 34 |
|
35 | 35 | <ItemGroup> |
36 | | - <None Include="..\Assets\logo.jpeg"> |
37 | | - <Pack>True</Pack> |
38 | | - <PackagePath>\</PackagePath> |
39 | | - </None> |
40 | | - <None Include="..\README.md"> |
41 | | - <Pack>True</Pack> |
42 | | - <PackagePath>\</PackagePath> |
43 | | - </None> |
| 36 | + <None Include="..\Assets\logo.jpeg" /> |
| 37 | + <None Include="..\README.md" /> |
44 | 38 | </ItemGroup> |
45 | 39 |
|
46 | 40 | <ItemGroup> |
|
0 commit comments