-
Notifications
You must be signed in to change notification settings - Fork 16
/
build.props
29 lines (29 loc) · 1.2 KB
/
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
<Project>
<PropertyGroup>
<PackageId Condition="'$(PackageId)' == ''">$(MSBuildProjectName)</PackageId>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.2.0</Version>
<Authors>Jan-Willem Spuij</Authors>
<Company />
<Description>
A WebView control for desktop and mobile platforms to run Blazor natively on .NET core and Mono.
Add a reference to the specific nuget package for your platform.
</Description>
<Copyright>2020 Jan-Willem Spuij, Steve Sanderson and the Microsoft Foundation.</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/jspuij/BlazorWebView</PackageProjectUrl>
<RepositoryUrl>https://github.com/jspuij/BlazorWebView</RepositoryUrl>
<RepositoryType>github</RepositoryType>
<AssemblyVersion>0.0.1.2</AssemblyVersion>
<FileVersion>0.0.1.2</FileVersion>
<PackageOutputPath>$(SolutionDir)packages</PackageOutputPath>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>