From: WonYoung Choi Date: Tue, 4 Oct 2016 14:28:29 +0000 (+0900) Subject: Use nuget restore to solve dependencies X-Git-Tag: accepted/tizen/mobile/20161215.072343~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ffb7818587be4e25e077e478dede106c26a76e3a;p=platform%2Fcore%2Fcsapi%2Fbadge.git Use nuget restore to solve dependencies Change-Id: I508084e8caedcfa451897b9450ad4627227cdd03 Signed-off-by: WonYoung Choi --- diff --git a/Tizen.Applications.Badge/Tizen.Applications.Badge.Net45.csproj b/Tizen.Applications.Badge/Tizen.Applications.Badge.Net45.csproj index 0434739..c7e3b0d 100644 --- a/Tizen.Applications.Badge/Tizen.Applications.Badge.Net45.csproj +++ b/Tizen.Applications.Badge/Tizen.Applications.Badge.Net45.csproj @@ -65,7 +65,6 @@ - - - $(MSBuildExtensionsPath)\Tizen - $(TizenBuildPath)\bin - - - - - - - - - - - - - - - - - - - - - diff --git a/Tizen.Applications.Badge/Tizen.Applications.Badge.nuspec b/Tizen.Applications.Badge/Tizen.Applications.Badge.nuspec index b221d6f..da33faf 100644 --- a/Tizen.Applications.Badge/Tizen.Applications.Badge.nuspec +++ b/Tizen.Applications.Badge/Tizen.Applications.Badge.nuspec @@ -6,7 +6,11 @@ Tizen Developers Badge API for Tizen.Net - + + + + + diff --git a/Tizen.Applications.Badge/Tizen.Applications.Badge.project.json b/Tizen.Applications.Badge/Tizen.Applications.Badge.project.json index 7a8a168..b3ee524 100755 --- a/Tizen.Applications.Badge/Tizen.Applications.Badge.project.json +++ b/Tizen.Applications.Badge/Tizen.Applications.Badge.project.json @@ -1,17 +1,9 @@ { - "buildOptions": { - "debugType": "portable", - "platform": "AnyCPU", - "preserveCompilationContext": true - }, "dependencies": { "NETStandard.Library": "1.6.0", - "Tizen": "1.0.0" - }, - "runtimes": { - "win": {} + "Tizen": "1.0.1" }, "frameworks": { - "netstandard1.6": {} + "netstandard1.3": {} } } \ No newline at end of file diff --git a/packaging/csapi-badge.spec b/packaging/csapi-badge.spec index 8fb1013..f7f2cf5 100755 --- a/packaging/csapi-badge.spec +++ b/packaging/csapi-badge.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-badge Summary: Tizen Badge API for C# -Version: 1.0.0 +Version: 1.0.1 Release: 1 Group: Development/Libraries License: Apache-2.0 @@ -17,20 +16,13 @@ URL: https://www.tizen.org Source0: %{name}-%{version}.tar.gz Source1: %{name}.manifest -# Mono 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 Requries -BuildRequires: csapi-tizen-devel +BuildRequires: csapi-tizen-nuget %description Tizen Badge API for C# @@ -42,42 +34,26 @@ cp %{SOURCE1} . %define Assemblies Tizen.Applications.Badge %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 @@ -86,22 +62,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}