1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
- <PropertyGroup Condition =" '$(OS)' == 'Windows_NT' " >
4
- <TargetFrameworks >netstandard2.0;netstandard2.1;net48;net6.0</TargetFrameworks >
5
- </PropertyGroup >
6
- <PropertyGroup Condition =" '$(OS)' != 'Windows_NT' " >
7
- <TargetFrameworks >netstandard2.0;netstandard2.1;net6.0</TargetFrameworks >
8
- </PropertyGroup >
9
-
10
3
<PropertyGroup >
4
+ <TargetFramework >netstandard2.0</TargetFramework >
5
+ <LangVersion >latest</LangVersion >
11
6
<RootNamespace >FluentAssertions.Analyzers</RootNamespace >
12
- <LangVersion >8.0</LangVersion >
7
+
8
+ <IncludeBuildOutput >false</IncludeBuildOutput >
9
+ <SuppressDependenciesWhenPacking >true</SuppressDependenciesWhenPacking >
10
+ <DevelopmentDependency >true</DevelopmentDependency >
11
+ <NoPackageAnalysis >true</NoPackageAnalysis >
13
12
</PropertyGroup >
14
13
14
+ <PropertyGroup >
15
+ <PackageId >FluentAssertions.Analyzers</PackageId >
16
+ <Version >0.15.0</Version >
17
+ <Authors >Meir Blachman</Authors >
18
+ <Copyright >Copyright Meir Blachman 2017-2022</Copyright >
19
+
20
+ <Description >Analyzers to help writing fluentassertions the right way.</Description >
21
+ <PackageTags >FluentAssertions Analyzers</PackageTags >
22
+ <PackageReleaseNotes >See https://github.com/fluentassertions/fluentassertions.analyzers/releases/</PackageReleaseNotes >
23
+
24
+ <PackageReadmeFile >docs\README.md</PackageReadmeFile >
25
+ <PackageIcon >fluent_assertions.svg.png</PackageIcon >
26
+ <PackageLicenseExpression >MIT</PackageLicenseExpression >
27
+ <PackageProjectUrl >https://github.com/fluentassertions/fluentassertions.analyzers</PackageProjectUrl >
28
+ <RepositoryUrl >https://github.com/fluentassertions/fluentassertions.analyzers</RepositoryUrl >
29
+ <RepositoryType >git</RepositoryType >
30
+ </PropertyGroup >
31
+
15
32
<ItemGroup >
16
- <PackageReference Include =" Microsoft.CodeAnalysis.CSharp.Workspaces " Version =" 3.3.1 " />
17
- <PackageReference Include =" Microsoft.Composition " Version =" 1.0.31 " />
33
+ <PackageReference Include =" Microsoft.CodeAnalysis.Analyzers " Version =" 3.3.2 " />
34
+ <PackageReference Include =" Microsoft.CodeAnalysis.CSharp.Workspaces " Version =" 3.11.0 " />
18
35
</ItemGroup >
19
36
20
37
<ItemGroup >
21
- <None Update =" FluentAssertions.Analyzers.nuspec" >
22
- <CopyToOutputDirectory >PreserveNewest</CopyToOutputDirectory >
23
- </None >
24
- <None Update =" tools\install.ps1" >
25
- <CopyToOutputDirectory >PreserveNewest</CopyToOutputDirectory >
26
- </None >
27
- <None Update =" tools\uninstall.ps1" >
28
- <CopyToOutputDirectory >PreserveNewest</CopyToOutputDirectory >
29
- </None >
38
+ <None Include =" ..\..\README.md" Pack =" true" PackagePath =" docs" />
39
+ <None Include =" ..\..\assets\fluent_assertions.svg.png" Pack =" true" PackagePath =" " />
40
+ <None Update =" tools\*.ps1" CopyToOutputDirectory =" Always" Pack =" true" PackagePath =" " />
41
+ <None Include =" $(OutputPath)\$(AssemblyName).dll" Pack =" true" PackagePath =" analyzers/dotnet/cs" Visible =" false" />
30
42
</ItemGroup >
31
43
32
- </Project >
44
+ </Project >
0 commit comments