-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.csproj
42 lines (42 loc) · 1.32 KB
/
package.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
40
41
42
<Project>
<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<!--Title, Description, Tags, Product, Product-->
<PropertyGroup>
<Title>Annotations for Excubo.Analyzers</Title>
<Description>Contains attributes used by the Excubo.Analyzers</Description>
<PackageTags>roslyn,analyzer</PackageTags>
<Product>Excubo.Analyzers.Annotations</Product>
</PropertyGroup>
<!--Author, Company-->
<PropertyGroup>
<Authors>Stefan Lörwald</Authors>
<Company>excubo ag</Company>
</PropertyGroup>
<!--Repository-->
<PropertyGroup>
<PackageProjectUrl>https://github.com/excubo-ag/Analyzers.Annotations</PackageProjectUrl>
<RepositoryUrl>https://github.com/excubo-ag/Analyzers.Annotations</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<!--PackageId, Version-->
<PropertyGroup>
<PackageId>Excubo.Analyzers.Annotations</PackageId>
<Version>1.0.1</Version>
</PropertyGroup>
<!--Self Include-->
<ItemGroup>
<None Include="package.csproj" />
</ItemGroup>
<PropertyGroup>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE">
<Pack>True</Pack>
<PackagePath>
</PackagePath>
</None>
</ItemGroup>
</Project>