-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.build.props
45 lines (41 loc) · 1.44 KB
/
Directory.build.props
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
<Project>
<!-- General -->
<PropertyGroup>
<MinVerTagPrefix>v</MinVerTagPrefix>
<Version>$(MinVerVersion)</Version>
<DisableTransitiveProjectReferences>true</DisableTransitiveProjectReferences>
<LangVersion>11</LangVersion>
<Nullable>enable</Nullable>
<WarningsAsErrors>nullable</WarningsAsErrors>
<Authors>Yeah69</Authors>
<PackageIcon>Yeah69Logo_256.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\Icon\Yeah69Logo_256.png">
<Pack>true</Pack>
<PackagePath/>
</None>
<None Include="..\README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<!-- General Package -->
<PropertyGroup>
<PackageVersion>$(MinVerVersion)</PackageVersion>
<RepositoryType>git</RepositoryType>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Description>For further information and updates please visit the projects page.</Description>
</PropertyGroup>
<ItemGroup>
<None Include="..\LICENSE">
<Pack>True</Pack>
<PackagePath/>
</None>
</ItemGroup>
<!-- Specific Package -->
<PropertyGroup>
<PackageTags>MrMeeseeks Visitor SourceGenerator</PackageTags>
<PackageReleaseNotes>-/-</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/Yeah69/MrMeeseeks.Visitor</PackageProjectUrl>
<RepositoryUrl>https://github.com/Yeah69/MrMeeseeks.Visitor</RepositoryUrl>
</PropertyGroup>
</Project>