-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathSystem.IO.Abstractions.Analyzers.csproj
More file actions
47 lines (46 loc) · 2.57 KB
/
Copy pathSystem.IO.Abstractions.Analyzers.csproj
File metadata and controls
47 lines (46 loc) · 2.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeBuildOutput>false</IncludeBuildOutput>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<LangVersion>latest</LangVersion>
<DevelopmentDependency>true</DevelopmentDependency>
<NoWarn>$(NoWarn);RS0016;RS1035;RS1038;RS2008</NoWarn>
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
</PropertyGroup>
<PropertyGroup>
<PackageId>TestableIO.System.IO.Abstractions.Analyzers</PackageId>
<Title>$(PackageId)</Title>
<PackageVersion>2022.0.0</PackageVersion>
<Authors>inyutin_maxim</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/TestableIO/System.IO.Abstractions.Analyzers/</PackageProjectUrl>
<PackageIconUrl>https://avatars1.githubusercontent.com/u/40829877</PackageIconUrl>
<RepositoryUrl>https://github.com/TestableIO/System.IO.Abstractions.Analyzers.git</RepositoryUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Description>TestableIO.System.IO.Abstractions.Analyzers</Description>
<PackageReleaseNotes>https://github.com/TestableIO/System.IO.Abstractions.Analyzers/releases/tag/v$(PackageVersion)</PackageReleaseNotes>
<Copyright>Copyright © System-IO-Abstractions</Copyright>
<PackageTags>TestableIO.System.IO.Abstractions.Analyzers, analyzers, System.IO.Abstractions, Roslyn</PackageTags>
<NoPackageAnalysis>true</NoPackageAnalysis>
<PackageIcon>icon_256x256.png</PackageIcon>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<Optimize>false</Optimize>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="2026.2.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0" PrivateAssets="all"/>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="5.0.0" PrivateAssets="all" />
<PackageReference Update="NETStandard.Library" PrivateAssets="all"/>
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.103" PrivateAssets="all" />
<PackageReference Include="Roslyn.Diagnostics.Analyzers" Version="3.3.4" PrivateAssets="all"/>
</ItemGroup>
<ItemGroup>
<None Update="tools\*.ps1" CopyToOutputDirectory="Always" Pack="true" PackagePath=""/>
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false"/>
</ItemGroup>
<ItemGroup>
<None Include="..\icon_256x256.png" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>