You've already forked linux-packaging-mono
acceptance-tests
data
debian
docs
external
Newtonsoft.Json
api-doc-tools
api-snapshot
aspnetwebstack
binary-reference-assemblies
bockbuild
boringssl
cecil
cecil-legacy
corefx
corert
ikdasm
ikvm
linker
nuget-buildtasks
nunit-lite
roslyn-binaries
rx
Ix
Rx
NET
Resources
Samples
Source
.nuget
Microsoft.Reactive.Testing
Playground
References
Rx_Xamarin
System.Reactive.Core
System.Reactive.Debugger
System.Reactive.Experimental
System.Reactive.Interfaces
System.Reactive.Linq
System.Reactive.Observable.Aliases
System.Reactive.PlatformServices
System.Reactive.Providers
System.Reactive.Runtime.Remoting
System.Reactive.Windows.Forms
System.Reactive.Windows.Threading
System.Reactive.WindowsRuntime
Tests.System.Reactive
packages
.gitattributes
.gitignore
35MSSharedLib1024.snk
Build.bat
BuildAll.proj
BuildSetup.bat
Clean.bat
Common.targets
Import.targets
Local.testsettings
README.txt
Rx.ruleset
Rx.sln.REMOVED.git-id
Test.ruleset
TraceAndTestImpact.testsettings
license.txt
packages.config
Test
tools
component
xpkg
.gitignore
README-microsoft-original.md
README.md
Rakefile
mono.patch
replacer.sh
xunit-binaries
ikvm-native
libgc
llvm
m4
man
mcs
mk
mono
msvc
po
runtime
samples
scripts
support
tools
COPYING.LIB
LICENSE
Makefile.am
Makefile.in
NEWS
README.md
acinclude.m4
aclocal.m4
autogen.sh
code_of_conduct.md
compile
config.guess
config.h.in
config.rpath
config.sub
configure.REMOVED.git-id
configure.ac.REMOVED.git-id
depcomp
install-sh
ltmain.sh.REMOVED.git-id
missing
mkinstalldirs
mono-uninstalled.pc.in
test-driver
winconfig.h
67 lines
4.4 KiB
Plaintext
67 lines
4.4 KiB
Plaintext
![]() |
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||
|
|
||
|
<!-- Non-Portable Library build -->
|
||
|
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v11.0\Microsoft.Windows.UI.Xaml.CSharp.targets" Condition=" '$(TargetFrameworkIdentifier)' == '.NETCore' " />
|
||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" Condition=" '$(TargetFrameworkIdentifier)' != '.NETPortable' And ('$(BuildPlatform)' == 'DESKTOPCLR' Or '$(BuildPlatform)' == 'XNA') " />
|
||
|
|
||
|
<!-- Silverlight ONLY (i.e., not phone) -->
|
||
|
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.CSharp.targets" Condition=" '$(TargetFrameworkIdentifier)' != '.NETPortable' And '$(BuildPlatform)' == 'SILVERLIGHT' AND !('$(BuildFlavor)' == 'SILVERLIGHTM7') " />
|
||
|
|
||
|
<!-- Windows Phone 7.1 (Silverlight for Phone) -->
|
||
|
<Import Project="$(MSBuildExtensionsPath)\Microsoft\Silverlight for Phone\$(TargetFrameworkVersion)\Microsoft.Silverlight.$(TargetFrameworkProfile).Overrides.targets" Condition=" '$(TargetFrameworkIdentifier)' != '.NETPortable' And '$(BuildFlavor)' == 'SILVERLIGHTM7' " />
|
||
|
<Import Project="$(MSBuildExtensionsPath)\Microsoft\Silverlight for Phone\$(TargetFrameworkVersion)\Microsoft.Silverlight.CSharp.targets" Condition=" '$(TargetFrameworkIdentifier)' != '.NETPortable' And '$(BuildFlavor)' == 'SILVERLIGHTM7' " />
|
||
|
|
||
|
<!-- Windows Phone 8 -->
|
||
|
<Import Project="$(MSBuildExtensionsPath)\Microsoft\$(TargetFrameworkIdentifier)\$(TargetFrameworkVersion)\Microsoft.$(TargetFrameworkIdentifier).$(TargetFrameworkVersion).Overrides.targets" Condition=" '$(TargetFrameworkIdentifier)' != '.NETPortable' And '$(BuildFlavor)' == 'WINDOWS_PHONE8' "/>
|
||
|
<Import Project="$(MSBuildExtensionsPath)\Microsoft\$(TargetFrameworkIdentifier)\$(TargetFrameworkVersion)\Microsoft.$(TargetFrameworkIdentifier).CSharp.targets" Condition=" '$(TargetFrameworkIdentifier)' != '.NETPortable' And '$(BuildFlavor)' == 'WINDOWS_PHONE8' "/>
|
||
|
|
||
|
<!-- Portable Library Build -->
|
||
|
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" Condition=" '$(TargetFrameworkIdentifier)' == '.NETPortable' " />
|
||
|
|
||
|
|
||
|
<!-- If "Sign" is set and assembly should be signed, generate a .sign file-->
|
||
|
<Target Name="AfterBuild">
|
||
|
|
||
|
<WriteLinesToFile Condition=" '$(ProductSignAssembly)' == 'true' AND '$(Sign)' == 'Sign' "
|
||
|
File="$(OutDir)\$(TargetFileName).sign"
|
||
|
Overwrite="true"
|
||
|
Lines="Auto-generated file, indicates the corresponding binary file needs to be signed.">
|
||
|
</WriteLinesToFile>
|
||
|
|
||
|
<!-- Hack for Metro; for some reason the XAML build creates intermediary folders, so we flatten the hierarchy for consumption by the setup build at a later stage -->
|
||
|
|
||
|
<!-- For some reason, using a plain <ItemGroup> does not fill in the list correctly, so we must use <CreateItem> -->
|
||
|
<CreateItem Include="$(OutDir)\*.sign;$(OutDir)\*.xml" Condition=" '$(TargetFrameworkIdentifier)' == '.NETCore' ">
|
||
|
<Output TaskParameter="Include" ItemName="CanaryFiles" />
|
||
|
</CreateItem>
|
||
|
|
||
|
<Message Text="-- Canary files: @(CanaryFiles)" Importance="high"/>
|
||
|
<Move
|
||
|
SourceFiles="@(CanaryFiles)"
|
||
|
DestinationFolder="$(OutDir)\.."
|
||
|
Condition=" '$(TargetFrameworkIdentifier)' == '.NETCore' " />
|
||
|
|
||
|
<!-- For some reason, using a plain <ItemGroup> does not fill in the list correctly, so we must use <CreateItem> -->
|
||
|
<CreateItem Include="$(OutDir)\*.*" Condition=" '$(TargetFrameworkIdentifier)' == '.NETCore' ">
|
||
|
<Output TaskParameter="Include" ItemName="BuiltFilesInOutDir" />
|
||
|
</CreateItem>
|
||
|
|
||
|
<Message Text="-- Built files: @(BuiltFilesInOutDir)" Importance="high"/>
|
||
|
<Copy
|
||
|
SourceFiles="@(BuiltFilesInOutDir)"
|
||
|
DestinationFolder="$(OutDir)\.."
|
||
|
Condition=" '$(TargetFrameworkIdentifier)' == '.NETCore' " />
|
||
|
</Target>
|
||
|
|
||
|
<!-- MICROSOFT BCL ASYNC CONFIGURATION -->
|
||
|
<!-- TODO: Add acondition to only load it when required? -->
|
||
|
|
||
|
<!-- Skip validation of packages.config since we are manageing the packages manuallt -->
|
||
|
<PropertyGroup>
|
||
|
<SkipValidatePackageReferences>true</SkipValidatePackageReferences>
|
||
|
</PropertyGroup>
|
||
|
<Import Project="packages\Microsoft.Bcl.Build.1.0.4\tools\Microsoft.Bcl.Build.targets" Condition=" '$(BuildTarget)' == 'PLLITE' Or '$(BuildTarget)' == '40' " />
|
||
|
|
||
|
</Project>
|