|
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | 4 | <TargetFramework>netstandard2.0</TargetFramework> |
5 | | - <IncludeBuildOutput>false</IncludeBuildOutput> |
6 | 5 | <GeneratePackageOnBuild>True</GeneratePackageOnBuild> |
7 | 6 | <PublishSingleFile>true</PublishSingleFile> |
8 | 7 | <EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules> |
| 8 | + <Nullable>enable</Nullable> |
| 9 | + <LangVersion>latest</LangVersion> |
| 10 | + <IsRoslynComponent>true</IsRoslynComponent> |
| 11 | + <IncludeBuildOutput>false</IncludeBuildOutput> |
9 | 12 | </PropertyGroup> |
10 | 13 |
|
11 | 14 | <PropertyGroup> |
|
21 | 24 | <Copyright></Copyright> |
22 | 25 | <PackageTags>MN.L10n.Analyzer, analyzers</PackageTags> |
23 | 26 | <NoPackageAnalysis>true</NoPackageAnalysis> |
24 | | - <Version>4.0.2</Version> |
| 27 | + <Version>5.0.0-beta.1</Version> |
25 | 28 | <Company>MultiNet Interactive AB</Company> |
26 | 29 | </PropertyGroup> |
27 | | - |
28 | | - <PropertyGroup> |
29 | | - <PlatformTarget>x64</PlatformTarget> |
30 | | - </PropertyGroup> |
31 | | - |
32 | 30 | <ItemGroup> |
33 | | - <PackageReference Include="Microsoft.CodeAnalysis" Version="4.13.0" /> |
34 | | - <PackageReference Update="NETStandard.Library" PrivateAssets="all" /> |
| 31 | + <PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="5.3.0"> |
| 32 | + <PrivateAssets>all</PrivateAssets> |
| 33 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 34 | + </PackageReference> |
| 35 | + <PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="5.3.0" PrivateAssets="all" /> |
35 | 36 | </ItemGroup> |
36 | 37 |
|
37 | 38 | <ItemGroup> |
38 | 39 | <Compile Update="Resources.Designer.cs" DesignTime="True" AutoGen="True" DependentUpon="Resources.resx" /> |
39 | 40 | <EmbeddedResource Update="Resources.resx" Generator="ResXFileCodeGenerator" LastGenOutput="Resources.Designer.cs" /> |
40 | 41 | </ItemGroup> |
41 | 42 |
|
42 | | - <ItemGroup> |
43 | | - <None Update="tools\*.ps1" CopyToOutputDirectory="Always" Pack="true" PackagePath="" /> |
44 | | - <None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" /> |
45 | | - </ItemGroup> |
46 | | - |
47 | 43 | <ItemGroup> |
48 | 44 | <AdditionalFiles Include="AnalyzerReleases.Shipped.md" /> |
49 | 45 | <AdditionalFiles Include="AnalyzerReleases.Unshipped.md" /> |
50 | 46 | </ItemGroup> |
51 | | - |
| 47 | + |
| 48 | + <ItemGroup> |
| 49 | + <None Update="tools\*.ps1" CopyToOutputDirectory="Always" Pack="true" PackagePath="" /> |
| 50 | + <None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" /> |
| 51 | + </ItemGroup> |
52 | 52 | </Project> |
0 commit comments