forked from HermanSchoenfeld/Sphere10.Framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
38 lines (33 loc) · 1.54 KB
/
Directory.Build.props
File metadata and controls
38 lines (33 loc) · 1.54 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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<!-- Shared version and metadata across all projects -->
<PropertyGroup>
<Authors>Herman Schoenfeld</Authors>
<Company>Sphere 10 Software</Company>
<Product>Sphere10 Framework</Product>
<Copyright>Herman Schoenfeld</Copyright>
<RepositoryUrl>https://github.com/HermanSchoenfeld/Sphere10.Framework</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl Condition="'$(PackageProjectUrl)' == ''">https://sphere10.com/tech/framework</PackageProjectUrl>
<PackageLicenseExpression Condition="'$(PackageLicenseFile)' == ''">MIT</PackageLicenseExpression>
<PackageIcon>sphere10-icon.png</PackageIcon>
<IsPackable>false</IsPackable>
<!-- Version Management -->
<Version>3.0.2</Version>
<VersionPrefix>3.0.2</VersionPrefix>
<AssemblyVersion>3.0.2</AssemblyVersion>
<FileVersion>3.0.2</FileVersion>
<InformationalVersion>3.0.2</InformationalVersion>
<!-- Build Configuration -->
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<!-- NuGet Packaging -->
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup Condition="Exists('$(MSBuildThisFileDirectory)resources\branding\sphere10-icon.png')">
<None Include="$(MSBuildThisFileDirectory)resources\branding\sphere10-icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>