forked from roubachof/Sharpnado.Presentation.Forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AssemblyInfo.targets
26 lines (23 loc) · 1.02 KB
/
AssemblyInfo.targets
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Copyright>Copyright © Sharpnado 2019</Copyright>
<Version>1.0.0</Version>
<Company>Sharpnado</Company>
<Product>Sharpnado Toolkit</Product>
<Description>Xamarin Forms custom components and renderers</Description>
</PropertyGroup>
<Target Name="GenerateCustomAssemblyInfo" BeforeTargets="BeforeBuild">
<Message Text="Updating AssemblyInfo to Version $(Version)"></Message>
<AssemblyInfo CodeLanguage="CS"
OutputFile="Properties\AssemblyInfo.cs"
AssemblyTitle="$(AssemblyName)"
AssemblyCompany="$(Company)"
AssemblyDescription="$(Description)"
AssemblyProduct="$(Product)"
AssemblyCopyright="$(Copyright)"
AssemblyVersion="$(Version)"
AssemblyFileVersion="$(Version)">
</AssemblyInfo>
</Target>
</Project>