From 6a300343339389770db73fe8076db54f61eb40d6 Mon Sep 17 00:00:00 2001 From: WonYoung Choi Date: Tue, 4 Oct 2016 13:40:33 +0900 Subject: [PATCH] Use nuget restore to solve dependencies Change-Id: I32b533b9bca86bac87e12f2c6c71ba09b06bfc4c --- packaging/csapi-download.spec | 67 ++++++---------------- .../Tizen.Content.Download.Net45.csproj | 1 - .../Tizen.Content.Download.Net45.project.json | 2 +- .../Tizen.Content.Download.csproj | 5 +- .../Tizen.Content.Download.nuspec | 6 +- .../Tizen.Content.Download.project.json | 7 +-- 6 files changed, 26 insertions(+), 62 deletions(-) diff --git a/packaging/csapi-download.spec b/packaging/csapi-download.spec index cd35a69..20eb0fb 100644 --- a/packaging/csapi-download.spec +++ b/packaging/csapi-download.spec @@ -1,5 +1,4 @@ %{!?dotnet_assembly_path: %define dotnet_assembly_path /opt/usr/share/dotnet.tizen/framework} -%{!?dotnet_core_path: %define dotnet_core_path %{_datadir}/tizen.net/ref} %if 0%{?tizen_build_devel_mode} %define BUILDCONF Debug @@ -9,7 +8,7 @@ Name: csapi-download Summary: Tizen Download API for C# -Version: 1.0.0 +Version: 1.0.1 Release: 1 Group: Development/Libraries License: Apache-2.0 @@ -17,21 +16,16 @@ URL: https://www.tizen.org Source0: %{name}-%{version}.tar.gz Source1: %{name}.manifest -# Mono +AutoReqProv: no + BuildRequires: mono-compiler BuildRequires: mono-devel -# .NETCore -%if 0%{?_with_corefx} -AutoReqProv: no -BuildRequires: corefx-managed-32b-ref -%endif - BuildRequires: dotnet-build-tools # C# API Requires -BuildRequires: csapi-tizen-devel -BuildRequires: csapi-application-devel +BuildRequires: csapi-tizen-nuget +BuildRequires: csapi-application-nuget %description Tizen Download API for C# @@ -43,42 +37,26 @@ cp %{SOURCE1} . %define Assemblies Tizen.Content.Download %build -# Build for Net45 for ASM in %{Assemblies}; do -if [ -e $ASM/$ASM.Net45.csproj ]; then - xbuild $ASM/$ASM.Net45.csproj \ - /p:Configuration=%{BUILDCONF} \ - /p:DotnetAssemblyPath=%{dotnet_assembly_path}/devel/net45 \ - /p:OutputPath=bin/net45 -fi - -# Build for Dotnet -%if 0%{?_with_corefx} -if [ -e $ASM/$ASM.csproj ]; then - xbuild $ASM/$ASM.csproj \ - /p:Configuration=%{BUILDCONF} \ - /p:DotnetAssemblyPath=%{dotnet_assembly_path}/devel/netstandard1.6 \ - /p:CoreFxPath=%{dotnet_core_path} \ - /p:OutputPath=bin/netstandard1.6 -fi -%endif - -# Make NuGet package -dotnet-gbs pack $ASM/$ASM.nuspec --PackageVersion=%{version} --PackageFiles=$ASM/bin - +# NuGet Restore +find $ASM/*.project.json -exec nuget restore {} \; +# Build +find $ASM/*.csproj -exec xbuild {} /p:Configuration=%{BUILDCONF} \; +# NuGet Pack +nuget pack $ASM/$ASM.nuspec -Version %{version} -Properties Configuration=%{BUILDCONF} done %install -mkdir -p %{buildroot}%{dotnet_assembly_path}/devel +# Runtime Binary +mkdir -p %{buildroot}%{dotnet_assembly_path} for ASM in %{Assemblies}; do - cp -fr $ASM/bin/* %{buildroot}%{dotnet_assembly_path}/devel %if 0%{?_with_corefx} - install -p -m 644 $ASM/bin/netstandard1.6/$ASM.dll %{buildroot}%{dotnet_assembly_path} + install -p -m 644 $ASM/bin/%{BUILDCONF}/$ASM.dll %{buildroot}%{dotnet_assembly_path} %else - install -p -m 644 $ASM/bin/net45/$ASM.dll %{buildroot}%{dotnet_assembly_path} + install -p -m 644 $ASM/bin/%{BUILDCONF}/Net45/$ASM.dll %{buildroot}%{dotnet_assembly_path} %endif done - +# NuGet mkdir -p %{buildroot}/nuget install -p -m 644 *.nupkg %{buildroot}/nuget @@ -87,22 +65,9 @@ install -p -m 644 *.nupkg %{buildroot}/nuget %license LICENSE %attr(644,root,root) %{dotnet_assembly_path}/*.dll -%package devel -Summary: Development package for %{name} -Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -AutoReqProv: no - -%description devel -Development package for %{name} - -%files devel -%{dotnet_assembly_path}/devel/* - %package nuget Summary: NuGet package for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} %description nuget NuGet package for %{name} diff --git a/src/Tizen.Content.Download/Tizen.Content.Download.Net45.csproj b/src/Tizen.Content.Download/Tizen.Content.Download.Net45.csproj index 77b5287..cb60161 100644 --- a/src/Tizen.Content.Download/Tizen.Content.Download.Net45.csproj +++ b/src/Tizen.Content.Download/Tizen.Content.Download.Net45.csproj @@ -49,7 +49,6 @@ -