forked from novotnyllc/MiFare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMiFare.proj
130 lines (107 loc) · 5.23 KB
/
MiFare.proj
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<Project DefaultTargets="Test" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="14.0">
<!-- Settings -->
<PropertyGroup>
<Configuration Condition="'$(Configuration)' == ''">Release</Configuration>
<ParallelizeTests Condition="'$(ParallelizeTests)' == ''">true</ParallelizeTests>
<MaxParallelThreads Condition="'$(MaxParallelThreads)' == ''">0</MaxParallelThreads>
<TrackFileAccess>false</TrackFileAccess>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">$(MSBuildProjectDirectory)\</SolutionDir>
<NuGetExePath Condition=" '$(NuGetExePath)' == '' ">$(SolutionDir).nuget\nuget.exe</NuGetExePath>
<RequestedVerbosity Condition=" '$(RequestedVerbosity)' == '' ">normal</RequestedVerbosity>
</PropertyGroup>
<ItemGroup>
<NuspecFiles Include="**\*.nuspec" />
<NuGetNuspecTargets Include="src\*.nuspec" />
</ItemGroup>
<ItemGroup Condition=" '$(PackageSources)' == '' ">
<PackageSource Include="https://nuget.org/api/v2/" />
</ItemGroup>
<!-- Cascading attempts to find a build number -->
<PropertyGroup Condition="'$(BuildNumber)' == ''">
<BuildNumber>$(BUILD_NUMBER)</BuildNumber>
</PropertyGroup>
<PropertyGroup Condition="'$(BuildNumber)' == ''">
<BuildNumber>0</BuildNumber>
</PropertyGroup>
<!-- Build server targets -->
<Target Name="CI" DependsOnTargets="PackageRestore;SetVersionNumber;Test;GitLink;Packages;PushMyGet" />
<Target Name="NuGets" DependsOnTargets="PackageRestore;Test;GitLink;Packages" />
<!-- Individiual targets -->
<Target Name="PackageRestore" DependsOnTargets="_DownloadNuGet">
<Message Text="Restoring NuGet packages..." Importance="High" />
<Exec Command="$(NuGetExePath) restore $(SolutionDir)MiFare.sln -NonInteractive -Source @(PackageSource) -Verbosity quiet" />
</Target>
<Target Name="Build" DependsOnTargets="PackageRestore">
<MSBuild
Projects="MiFare.sln"
Targets="Build"
Properties="Configuration=$(Configuration);TrackFileAccess=$(TrackFileAccess)"/>
</Target>
<Target Name="Test" DependsOnTargets="Build">
<!-- TODO: add unit tests here, if desired -->
</Target>
<Target Name="Help" DependsOnTargets="Build">
<Exec Command='"C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\SandcastleBuilderConsole.exe" help\xunit.shfb' />
</Target>
<Target Name='GitLink'>
<Exec Command='.nuget\GitLink.exe $(MSBuildThisFileDirectory) -u https://github.com/onovotny/MiFare -commit $(CommitHash)' IgnoreExitCode='true' Condition="'$(CommitHash)' != '' " />
<Exec Command='.nuget\GitLink.exe $(MSBuildThisFileDirectory) -u https://github.com/onovotny/MiFare' IgnoreExitCode='true' Condition="'$(CommitHash)' == '' " />
</Target>
<Target Name="SetVersionNumber">
<RegexReplace
Pattern='AssemblyVersion\("(\d+\.\d+\.\d+)\.\d+"\)'
Replacement='AssemblyVersion("$1.$(BuildNumber)")'
Files='src\common\GlobalAssemblyInfo.cs'/>
<RegexReplace
Pattern='<version>(\d+\.\d+\.\d+(-[A-Za-z0-9-]+)?)<'
Replacement='<version>$1-build$(BuildNumber)<'
Files='@(NuspecFiles)'/>
<RegexReplace
Pattern='version="\[(\d+\.\d+\.\d+(-[A-Za-z0-9-]+)?)\]"'
Replacement='version="[$1-build$(BuildNumber)]"'
Files='@(NuspecFiles)'/>
</Target>
<Target Name='Packages'>
<Exec Command='.nuget\NuGet.exe pack %(NuGetNuspecTargets.Identity) -NoPackageAnalysis -NonInteractive -Verbosity quiet' />
</Target>
<Target Name="PushMyGet">
<ItemGroup>
<NupkgSymbolsFiles Include="*.symbols.nupkg" />
<NupkgFiles Include="*.nupkg" Exclude="@(NupkgSymbolsFiles)" />
</ItemGroup>
<Exec Command=".nuget\NuGet.exe push %(NupkgFiles.Identity) -NonInteractive -Source https://www.myget.org/F/xunit-xamarin/api/v2/package" />
<Exec Command=".nuget\NuGet.exe push %(NupkgSymbolsFiles.Identity) -NonInteractive -Source https://nuget.symbolsource.org/MyGet/xunit-xamarin" />
</Target>
<Target Name="_DownloadNuGet">
<MakeDir Directories="$(SolutionDir).nuget" />
<DownloadNuGet OutputFilename="$(NuGetExePath)" Condition="!Exists('$(NuGetExePath)')" />
</Target>
<UsingTask TaskName="DownloadNuGet" TaskFactory="CodeTaskFactory" AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.v4.0.dll">
<ParameterGroup>
<OutputFilename ParameterType="System.String" Required="true" />
</ParameterGroup>
<Task>
<Reference Include="System.Core" />
<Using Namespace="System" />
<Using Namespace="System.IO" />
<Using Namespace="System.Net" />
<Using Namespace="Microsoft.Build.Framework" />
<Using Namespace="Microsoft.Build.Utilities" />
<Code Type="Fragment" Language="cs">
<![CDATA[
try {
OutputFilename = Path.GetFullPath(OutputFilename);
Log.LogMessage("Downloading latest version of NuGet.exe...");
WebClient webClient = new WebClient();
webClient.DownloadFile("https://nuget.org/nuget.exe", OutputFilename);
return true;
}
catch (Exception ex) {
Log.LogErrorFromException(ex);
return false;
}
]]>
</Code>
</Task>
</UsingTask>
</Project>