-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNamespaceResolver.csproj
39 lines (34 loc) · 1.74 KB
/
NamespaceResolver.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard1.4</TargetFramework>
<PackageTargetFallback>portable-net45+win8+wp8+wpa81</PackageTargetFallback>
<AssemblyName>NamespaceResolver</AssemblyName>
<IncludeBuildOutput>false</IncludeBuildOutput>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup>
<PackageId>NamespaceResolver</PackageId>
<PackageVersion>1.0.2</PackageVersion>
<Title>Namespace must match file location (Analyzer)</Title>
<Authors>Anton Komarov</Authors>
<Owners>Anton Komarov</Owners>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseUrl></PackageLicenseUrl>
<PackageProjectUrl></PackageProjectUrl>
<Description>Contains analyser which helps to find issue: "Namespace must match file location"</Description>
<PackageTags>roslyn analyzer analyser code analysis fix refactoring csharp c# namespace</PackageTags>
<NoPackageAnalysis>true</NoPackageAnalysis>
<RepositoryUrl>https://github.com/komanton/NamespaceResolver</RepositoryUrl>
<!--<PackageIconUrl></PackageIconUrl>-->
<!--<PackageReleaseNotes></PackageReleaseNotes>-->
<!--<Copyright>Copyright</Copyright>-->
</PropertyGroup>
<ItemGroup>
<None Update="tools\*.ps1" CopyToOutputDirectory="Always" Pack="true" PackagePath="tools" />
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="2.2.0" />
<PackageReference Update="NETStandard.Library" PrivateAssets="all" />
</ItemGroup>
</Project>