-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
51 lines (46 loc) · 1.74 KB
/
Directory.Build.props
File metadata and controls
51 lines (46 loc) · 1.74 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
48
49
50
51
<Project>
<!-- General -->
<PropertyGroup>
<MinVerTagPrefix>v</MinVerTagPrefix>
<Version>$(MinVerVersion)</Version>
<DisableTransitiveProjectReferences>true</DisableTransitiveProjectReferences>
<LangVersion>preview</LangVersion>
<Nullable>enable</Nullable>
<WarningsAsErrors>nullable</WarningsAsErrors>
<Authors>Yeah69</Authors>
<PackageIcon>Yeah69Logo_256.png</PackageIcon>
<AssemblyName>$(RootNamespace)</AssemblyName>
<Product>$(RootNamespace)</Product>
</PropertyGroup>
<ItemGroup>
<None Include="..\Icon\Yeah69Logo_256.png">
<Pack>true</Pack>
<PackagePath/>
</None>
</ItemGroup>
<!-- General Package -->
<PropertyGroup>
<PackageVersion>$(MinVerVersion)</PackageVersion>
<RepositoryType>git</RepositoryType>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageId>$(RootNamespace)</PackageId>
<Title>$(RootNamespace)</Title>
<Description>For further information and updates please visit the projects page.</Description>
</PropertyGroup>
<ItemGroup>
<None Include="..\LICENSE">
<Pack>True</Pack>
<PackagePath/>
</None>
</ItemGroup>
<!-- Specific -->
<PropertyGroup>
</PropertyGroup>
<!-- Specific Package -->
<PropertyGroup>
<PackageTags>Utility Helper MrMeeseeks ResX ViewModel</PackageTags>
<PackageProjectUrl>https://github.com/Yeah69/MrMeeseeks.ResXToViewModelGenerator</PackageProjectUrl>
<RepositoryUrl>https://github.com/Yeah69/MrMeeseeks.ResXToViewModelGenerator</RepositoryUrl>
<PackageReleaseNotes>-/-</PackageReleaseNotes>
</PropertyGroup>
</Project>