VS2017 migration
authorcoderhyme <jhyo.kim@samsung.com>
Thu, 18 May 2017 06:08:33 +0000 (15:08 +0900)
committercoderhyme <jhyo.kim@samsung.com>
Fri, 19 May 2017 01:45:06 +0000 (10:45 +0900)
Change-Id: I56d7fe8f0331614b3640b654b2a4fb1c16084576
Signed-off-by: coderhyme <jhyo.kim@samsung.com>
packaging/csapi-multimedia.spec
src/Tizen.Multimedia.MediaCodec/Properties/AssemblyInfo.cs [deleted file]
src/Tizen.Multimedia.MediaCodec/Tizen.Multimedia.MediaCodec.csproj
src/Tizen.Multimedia.MediaCodec/Tizen.Multimedia.MediaCodec.nuspec
src/Tizen.Multimedia.MediaCodec/Tizen.Multimedia.MediaCodec.project.json [deleted file]
src/Tizen.Multimedia/Common/AssemblyAttrs.cs [new file with mode: 0644]
src/Tizen.Multimedia/Properties/AssemblyInfo.cs [deleted file]
src/Tizen.Multimedia/Tizen.Multimedia.csproj
src/Tizen.Multimedia/Tizen.Multimedia.nuspec
src/Tizen.Multimedia/Tizen.Multimedia.project.json [deleted file]

index 349d4bf..c70f03b 100755 (executable)
@@ -33,13 +33,14 @@ BuildRequires: csapi-information-nuget
 cp %{SOURCE1} .
 
 %build
+%dotnet_build Tizen.Multimedia.sln
+
 AssemArray=(%Assemblies)
 
 for((i=0; i<${#AssemArray[*]};i+=2))
 do
        AsmName=${AssemArray[$i]}
        AsmVer=${AssemArray[$i+1]}
-       %dotnet_build $AsmName
        %dotnet_pack $AsmName/$AsmName.nuspec $AsmVer
 done
 
diff --git a/src/Tizen.Multimedia.MediaCodec/Properties/AssemblyInfo.cs b/src/Tizen.Multimedia.MediaCodec/Properties/AssemblyInfo.cs
deleted file mode 100644 (file)
index 1b4c6f4..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyTitle("Tizen.Multimedia.MediaCodec")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("Samsung Electronics")]
-[assembly: AssemblyProduct("Tizen.Multimedia.MediaCodec")]
-[assembly: AssemblyCopyright("Copyright © Samsung Electronics 2017")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-// Setting ComVisible to false makes the types in this assembly not visible
-// to COM components.  If you need to access a type in this assembly from
-// COM, set the ComVisible attribute to true on that type.
-[assembly: ComVisible(false)]
-
-// The following GUID is for the ID of the typelib if this project is exposed to COM
-[assembly: Guid("c74f30be-bc8d-4d1a-84d6-f7255a6687be")]
-
-// Version information for an assembly consists of the following four values:
-//
-//      Major Version
-//      Minor Version
-//      Build Number
-//      Revision
-//
-// You can specify all the values or you can default the Build and Revision Numbers
-// by using the '*' as shown below:
-// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
index ce8694e..b2e8cac 100644 (file)
@@ -1,95 +1,20 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-  <PropertyGroup>
-    <MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion>
-    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
-    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
-    <ProductVersion>8.0.30703</ProductVersion>
-    <SchemaVersion>2.0</SchemaVersion>
-    <ProjectGuid>{C74F30BE-BC8D-4D1A-84D6-F7255A6687BE}</ProjectGuid>
-    <OutputType>Library</OutputType>
-    <AppDesignerFolder>Properties</AppDesignerFolder>
-    <RootNamespace>Tizen.Multimedia.MediaCodec</RootNamespace>
-    <AssemblyName>Tizen.Multimedia.MediaCodec</AssemblyName>
-    <FileAlignment>512</FileAlignment>
-    <DefaultLanguage>en-US</DefaultLanguage>
-  </PropertyGroup>
-  <PropertyGroup>
-    <TargetFrameworkIdentifier>.NETStandard</TargetFrameworkIdentifier>
-    <TargetFrameworkVersion>v1.3</TargetFrameworkVersion>
-    <NuGetTargetMoniker>.NETStandard,Version=v1.3</NuGetTargetMoniker>
-    <AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>
-    <NoStdLib>true</NoStdLib>
-    <NoWarn>$(NoWarn);1701</NoWarn>
-    <UseVSHostingProcess>false</UseVSHostingProcess>
-  </PropertyGroup>
-  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
-    <DebugSymbols>true</DebugSymbols>
-    <DebugType>full</DebugType>
-    <Optimize>false</Optimize>
-    <OutputPath>bin\Debug\</OutputPath>
-    <DefineConstants>DEBUG;TRACE</DefineConstants>
-    <ErrorReport>prompt</ErrorReport>
-    <WarningLevel>4</WarningLevel>
-  </PropertyGroup>
-  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
-    <DebugType>pdbonly</DebugType>
-    <Optimize>true</Optimize>
-    <OutputPath>bin\Release\</OutputPath>
-    <DefineConstants>TRACE</DefineConstants>
-    <ErrorReport>prompt</ErrorReport>
-    <WarningLevel>4</WarningLevel>
-  </PropertyGroup>
-  <PropertyGroup>
-    <SignAssembly>true</SignAssembly>
-  </PropertyGroup>
+<Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
+    <TargetFramework>netstandard1.3</TargetFramework>
+    <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
+    <SignAssembly>True</SignAssembly>
     <AssemblyOriginatorKeyFile>Tizen.Multimedia.MediaCodec.snk</AssemblyOriginatorKeyFile>
+    <PublicSign Condition="'$(OS)' != 'Windows_NT'">true</PublicSign>
+    <GenerateReferenceAssembly>True</GenerateReferenceAssembly>
+    <DelaySign>False</DelaySign>
   </PropertyGroup>
+
   <ItemGroup>
-    <None Include="Tizen.Multimedia.MediaCodec.nuspec" />
-    <None Include="Tizen.Multimedia.MediaCodec.project.json" />
-    <None Include="Tizen.Multimedia.MediaCodec.snk" />
-  </ItemGroup>
-  <ItemGroup>
-    <Compile Include="Interop\Interop.Libraries.cs" />
-    <Compile Include="Interop\Interop.MediaCodec.cs" />
-    <Compile Include="Interop\Interop.MediaTool.cs" />
-    <Compile Include="MediaCodec\BufferStatusChangedEventArgs.cs" />
-    <Compile Include="MediaCodec\InputProcessedEventArgs.cs" />
-    <Compile Include="MediaCodec\MediaCodec.cs" />
-    <Compile Include="MediaCodec\MediaCodecError.cs" />
-    <Compile Include="MediaCodec\MediaCodecErrorOccurredEventArgs.cs" />
-    <Compile Include="MediaCodec\MediaCodecStatus.cs" />
-    <Compile Include="MediaCodec\MediaCodecType.cs" />
-    <Compile Include="MediaCodec\OutputAvailableEventArgs.cs" />
-    <Compile Include="MediaCodec\SupportedCodecType.cs" />
-    <Compile Include="Properties\AssemblyInfo.cs" />
+    <PackageReference Include="Tizen" Version="1.0.3" />
   </ItemGroup>
+
   <ItemGroup>
-    <ProjectReference Include="..\Tizen.Multimedia\Tizen.Multimedia.csproj">
-      <Project>{0ce698b0-4849-4096-9d7f-30e611f50dad}</Project>
-      <Name>Tizen.Multimedia</Name>
-    </ProjectReference>
+    <ProjectReference Include="..\Tizen.Multimedia\Tizen.Multimedia.csproj" />
   </ItemGroup>
-  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
-  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
-               Other similar extension points exist, see Microsoft.Common.targets.
-       <Target Name="BeforeBuild">
-       </Target>
-       <Target Name="AfterBuild">
-       </Target>
-       -->
-  <PropertyGroup>
-    <!-- https://github.com/dotnet/corefxlab/tree/master/samples/NetCoreSample and
-                        https://docs.microsoft.com/en-us/dotnet/articles/core/tutorials/target-dotnetcore-with-msbuild
-               -->
-    <!-- We don't use any of MSBuild's resolution logic for resolving the framework, so just set these two
-                        properties to any folder that exists to skip the GetReferenceAssemblyPaths task (not target) and
-                        to prevent it from outputting a warning (MSB3644).
-               -->
-    <_TargetFrameworkDirectories>$(MSBuildThisFileDirectory)</_TargetFrameworkDirectories>
-    <_FullFrameworkReferenceAssemblyPaths>$(MSBuildThisFileDirectory)</_FullFrameworkReferenceAssemblyPaths>
-    <AutoUnifyAssemblyReferences>true</AutoUnifyAssemblyReferences>
-  </PropertyGroup>
-</Project>
\ No newline at end of file
+
+</Project>
index ca5b7f9..0280114 100644 (file)
@@ -16,7 +16,4 @@
       <dependency id="Tizen.Multimedia" version="1.1.0" />
     </dependencies>
        </metadata>
-  <files>
-    <file src="bin/$Configuration$/Tizen.Multimedia.MediaCodec.dll" target="lib/netstandard1.3" />
-  </files>
 </package>
diff --git a/src/Tizen.Multimedia.MediaCodec/Tizen.Multimedia.MediaCodec.project.json b/src/Tizen.Multimedia.MediaCodec/Tizen.Multimedia.MediaCodec.project.json
deleted file mode 100644 (file)
index 561ab5a..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-  "dependencies": {
-    "NETStandard.Library": "1.6.0",
-    "Tizen": "1.0.3"
-  },
-  "frameworks": {
-    "netstandard1.3": {}
-  }
-}
\ No newline at end of file
diff --git a/src/Tizen.Multimedia/Common/AssemblyAttrs.cs b/src/Tizen.Multimedia/Common/AssemblyAttrs.cs
new file mode 100644 (file)
index 0000000..88b0f3b
--- /dev/null
@@ -0,0 +1,23 @@
+/*
+ * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+using System.Runtime.CompilerServices;
+
+[assembly: InternalsVisibleTo("Tizen.Multimedia.MediaCodec, " +
+    "PublicKey=002400000480000094000000060200000024000052534131000400000100010085f7b7a5984e7e995" +
+    "d5f86234bfd1d4b2609b9334d5cb6cd3076c5faab98f8c4922d88fec96bea747fec274bceedc2bd1adb28c38a33" +
+    "c66182245adec7fbcee69cc556c337758646936500b770e19a562ebd10a527787f176eba8fdcf58c8e220042580" +
+    "75fe2903b3b5090953ac1d41c587993377cde63269a7cdd6cbf98efda")]
diff --git a/src/Tizen.Multimedia/Properties/AssemblyInfo.cs b/src/Tizen.Multimedia/Properties/AssemblyInfo.cs
deleted file mode 100644 (file)
index 0341e7f..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyTitle("Tizen.Multimedia")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("Samsung Electronics")]
-[assembly: AssemblyProduct("Tizen.Multimedia")]
-[assembly: AssemblyCopyright("Copyright © Samsung Electronics 2017")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-// Setting ComVisible to false makes the types in this assembly not visible
-// to COM components.  If you need to access a type in this assembly from
-// COM, set the ComVisible attribute to true on that type.
-[assembly: ComVisible(false)]
-
-// The following GUID is for the ID of the typelib if this project is exposed to COM
-[assembly: Guid("3bbcff7a-1f64-43a8-bdca-ffaee260697a")]
-
-// Version information for an assembly consists of the following four values:
-//
-//      Major Version
-//      Minor Version
-//      Build Number
-//      Revision
-//
-// You can specify all the values or you can default the Build and Revision Numbers
-// by using the '*' as shown below:
-// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
-
-
-[assembly: InternalsVisibleTo("Tizen.Multimedia.MediaCodec, " +
-    "PublicKey=002400000480000094000000060200000024000052534131000400000100010085f7b7a5984e7e995" +
-    "d5f86234bfd1d4b2609b9334d5cb6cd3076c5faab98f8c4922d88fec96bea747fec274bceedc2bd1adb28c38a33" +
-    "c66182245adec7fbcee69cc556c337758646936500b770e19a562ebd10a527787f176eba8fdcf58c8e220042580" +
-    "75fe2903b3b5090953ac1d41c587993377cde63269a7cdd6cbf98efda")]
index c7103d2..d9f36b1 100755 (executable)
-<?xml version="1.0" encoding="utf-8"?>
-<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-  <PropertyGroup>
-    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
-    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
-    <ProjectGuid>{0CE698B0-4849-4096-9D7F-30E611F50DAD}</ProjectGuid>
-    <OutputType>Library</OutputType>
-    <AppDesignerFolder>Properties</AppDesignerFolder>
-    <RootNamespace>Tizen.Multimedia</RootNamespace>
-    <AssemblyName>Tizen.Multimedia</AssemblyName>
-    <FileAlignment>512</FileAlignment>
-  </PropertyGroup>
-  <PropertyGroup>
-    <TargetFrameworkIdentifier>.NETStandard</TargetFrameworkIdentifier>
-    <TargetFrameworkVersion>v1.3</TargetFrameworkVersion>
-    <NuGetTargetMoniker>.NETStandard,Version=v1.3</NuGetTargetMoniker>
-    <AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>
-    <NoStdLib>true</NoStdLib>
-    <NoWarn>$(NoWarn);1701;1702</NoWarn>
-  </PropertyGroup>
-  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
-    <DebugSymbols>true</DebugSymbols>
-    <DebugType>full</DebugType>
-    <Optimize>false</Optimize>
-    <OutputPath>bin\Debug\</OutputPath>
-    <DefineConstants>DEBUG;TRACE</DefineConstants>
-    <ErrorReport>prompt</ErrorReport>
-    <WarningLevel>4</WarningLevel>
-  </PropertyGroup>
-  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
-    <DebugType>pdbonly</DebugType>
-    <Optimize>true</Optimize>
-    <OutputPath>bin\Release\</OutputPath>
-    <DefineConstants>TRACE</DefineConstants>
-    <ErrorReport>prompt</ErrorReport>
-    <WarningLevel>4</WarningLevel>
-  </PropertyGroup>
-  <PropertyGroup>
-    <SignAssembly>true</SignAssembly>
-  </PropertyGroup>
+<Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
+    <TargetFramework>netstandard1.3</TargetFramework>
+    <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
+    <SignAssembly>True</SignAssembly>
     <AssemblyOriginatorKeyFile>Tizen.Multimedia.snk</AssemblyOriginatorKeyFile>
+    <PublicSign Condition="'$(OS)' != 'Windows_NT'">true</PublicSign>
+    <GenerateReferenceAssembly>True</GenerateReferenceAssembly>
+    <DelaySign>False</DelaySign>
   </PropertyGroup>
+
   <ItemGroup>
-    <Compile Include="AudioIO\AudioCapture.cs" />
-    <Compile Include="AudioIO\AudioDataAvailableEventArgs.cs" />
-    <Compile Include="AudioIO\AudioIOEnums.cs" />
-    <Compile Include="AudioIO\AudioIOStateChangedEventArgs.cs" />
-    <Compile Include="AudioIO\AudioIOUtil.cs" />
-    <Compile Include="AudioIO\AudioPlayback.cs" />
-    <Compile Include="AudioIO\AudioPlaybackBufferAvailableEventArgs.cs" />
-    <Compile Include="AudioManager\AudioDevice.cs" />
-    <Compile Include="AudioManager\AudioDeviceConnectionChangedEventArgs.cs" />
-    <Compile Include="AudioManager\AudioDeviceStateChangedEventArgs.cs" />
-    <Compile Include="AudioManager\AudioManager.cs" />
-    <Compile Include="AudioManager\AudioManagerEnumerations.cs" />
-    <Compile Include="AudioManager\AudioManagerErrorFactory.cs" />
-    <Compile Include="AudioManager\AudioStreamPolicy.cs" />
-    <Compile Include="AudioManager\AudioVolume.cs" />
-    <Compile Include="AudioManager\FocusStateChangedEventArgs.cs" />
-    <Compile Include="AudioManager\MaxVolumeLevel.cs" />
-    <Compile Include="AudioManager\StreamFocusStateChangedEventArgs.cs" />
-    <Compile Include="AudioManager\VolumeChangedEventArgs.cs" />
-    <Compile Include="AudioManager\VolumeLevel.cs" />
-    <Compile Include="Camera\Camera.cs" />
-    <Compile Include="Camera\CameraCapturingEventArgs.cs" />
-    <Compile Include="Camera\CameraDeviceStateChangedEventArgs.cs" />
-    <Compile Include="Camera\CameraDisplaySettings.cs" />
-    <Compile Include="Camera\CameraEnums.cs" />
-    <Compile Include="Camera\CameraErrorFactory.cs" />
-    <Compile Include="Camera\CameraErrorOccurredEventArgs.cs" />
-    <Compile Include="Camera\CameraException.cs" />
-    <Compile Include="Camera\CameraFeatures.cs" />
-    <Compile Include="Camera\CameraFocusStateChangedEventArgs.cs" />
-    <Compile Include="Camera\CameraInterruptedEventArgs.cs" />
-    <Compile Include="Camera\CameraSettings.cs" />
-    <Compile Include="Camera\CameraStateChangedEventArgs.cs" />
-    <Compile Include="Camera\DoublePlane.cs" />
-    <Compile Include="Camera\EncodedPlane.cs" />
-    <Compile Include="Camera\FaceDetectedEventArgs.cs" />
-    <Compile Include="Camera\FaceDetectionData.cs" />
-    <Compile Include="Camera\HdrCaptureProgressEventArgs.cs" />
-    <Compile Include="Camera\ImageData.cs" />
-    <Compile Include="Camera\IPreviewPlane.cs" />
-    <Compile Include="Camera\Location.cs" />
-    <Compile Include="Camera\MediaPacketPreviewEventArgs.cs" />
-    <Compile Include="Camera\PreviewData.cs" />
-    <Compile Include="Camera\PreviewEventArgs.cs" />
-    <Compile Include="Camera\SinglePlane.cs" />
-    <Compile Include="Camera\TriplePlane.cs" />
-    <Compile Include="Common\Display.cs" />
-    <Compile Include="Common\FileFormatException.cs" />
-    <Compile Include="Common\IBufferOwner.cs" />
-    <Compile Include="Common\IMediaBuffer.cs" />
-    <Compile Include="Common\MultimediaDebug.cs" />
-    <Compile Include="Common\MultimediaLog.cs" />
-    <Compile Include="Common\ObjectDescriptionBuilder.cs" />
-    <Compile Include="Common\ObjectKeeper.cs" />
-    <Compile Include="Common\Point.cs" />
-    <Compile Include="Common\Range.cs" />
-    <Compile Include="Common\Rectangle.cs" />
-    <Compile Include="Common\Size.cs" />
-    <Compile Include="Common\Features.cs" />
-    <Compile Include="Common\ValdiationUtil.cs" />
-    <Compile Include="Common\Visibility.cs" />
-    <Compile Include="Interop\Interop.AudioIO.cs" />
-    <Compile Include="Interop\Interop.Camera.cs" />
-    <Compile Include="Interop\Interop.CameraDisplay.cs" />
-    <Compile Include="Interop\Interop.CameraFeatures.cs" />
-    <Compile Include="Interop\Interop.CameraSettings.cs" />
-    <Compile Include="Interop\Interop.Device.cs" />
-    <Compile Include="Interop\Interop.ErrorCode.cs" />
-    <Compile Include="Interop\Interop.EvasObject.cs" />
-    <Compile Include="Interop\Interop.ImageUtil.cs" />
-    <Compile Include="Interop\Interop.ImageUtil.Decode.cs" />
-    <Compile Include="Interop\Interop.ImageUtil.Encode.cs" />
-    <Compile Include="Interop\Interop.ImageUtil.Transform.cs" />
-    <Compile Include="Interop\Interop.Libraries.cs" />
-    <Compile Include="Interop\Interop.MediaController.cs" />
-    <Compile Include="Interop\Interop.MediaTool.cs" />
-    <Compile Include="Interop\Interop.MediaVision.BarCode.cs" />
-    <Compile Include="Interop\Interop.MediaVision.Common.cs" />
-    <Compile Include="Interop\Interop.MediaVision.Face.cs" />
-    <Compile Include="Interop\Interop.MediaVision.Image.cs" />
-    <Compile Include="Interop\Interop.MediaVision.Surveillance.cs" />
-    <Compile Include="Interop\Interop.MetadataEditor.cs" />
-    <Compile Include="Interop\Interop.MetadataExtractor.cs" />
-    <Compile Include="Interop\Interop.Player.cs" />
-    <Compile Include="Interop\Interop.Radio.cs" />
-    <Compile Include="Interop\Interop.Recorder.cs" />
-    <Compile Include="Interop\Interop.RecorderFeatures.cs" />
-    <Compile Include="Interop\Interop.RecorderSettings.cs" />
-    <Compile Include="Interop\Interop.SafeMultimediaHandle.cs" />
-    <Compile Include="Interop\Interop.ScreenMirroring.cs" />
-    <Compile Include="Interop\Interop.StreamPolicy.cs" />
-    <Compile Include="Interop\Interop.StreamRecorder.cs" />
-    <Compile Include="Interop\Interop.ThumbnailExtractor.cs" />
-    <Compile Include="Interop\Interop.TonePlayer.cs" />
-    <Compile Include="Interop\Interop.VideoUtil.cs" />
-    <Compile Include="Interop\Interop.Volume.cs" />
-    <Compile Include="Interop\Interop.WavPlayer.cs" />
-    <Compile Include="MediaController\CustomCommandEventArgs.cs" />
-    <Compile Include="MediaController\CustomCommandReplyEventArgs.cs" />
-    <Compile Include="MediaController\MediaControllerClient.cs" />
-    <Compile Include="MediaController\MediaControllerEnums.cs" />
-    <Compile Include="MediaController\MediaControllerError.cs" />
-    <Compile Include="MediaController\MediaControllerLog.cs" />
-    <Compile Include="MediaController\MediaControllerMetadata.cs" />
-    <Compile Include="MediaController\MediaControllerPlayback.cs" />
-    <Compile Include="MediaController\MediaControllerServer.cs" />
-    <Compile Include="MediaController\MetadataUpdatedEventArgs.cs" />
-    <Compile Include="MediaController\PlaybackStateCommandEventArgs.cs" />
-    <Compile Include="MediaController\PlaybackUpdatedEventArgs.cs" />
-    <Compile Include="MediaController\RepeatModeUpdatedEventArgs.cs" />
-    <Compile Include="MediaController\ServerInformation.cs" />
-    <Compile Include="MediaController\ServerUpdatedEventArgs.cs" />
-    <Compile Include="MediaController\ShuffleModeUpdatedEventArgs.cs" />
-    <Compile Include="MediaTool\MediaFormat.cs" />
-    <Compile Include="MediaTool\MediaFormatAacType.cs" />
-    <Compile Include="MediaTool\MediaFormatMimeType.cs" />
-    <Compile Include="MediaTool\MediaFormatTextType.cs" />
-    <Compile Include="MediaTool\MediaPacket.cs" />
-    <Compile Include="MediaTool\MediaPacketBuffer.cs" />
-    <Compile Include="MediaTool\MediaPacketBufferFlags.cs" />
-    <Compile Include="MediaTool\MediaPacketVideoPlane.cs" />
-    <Compile Include="MediaView\MediaView.cs" />
-    <Compile Include="MediaVision\Barcode.cs" />
-    <Compile Include="MediaVision\BarcodeDetector.cs" />
-    <Compile Include="MediaVision\BarcodeGenerator.cs" />
-    <Compile Include="MediaVision\BarcodeImageConfiguration.cs" />
-    <Compile Include="MediaVision\BarcodeImageFormat.cs" />
-    <Compile Include="MediaVision\BarcodeType.cs" />
-    <Compile Include="MediaVision\Colorspace.cs" />
-    <Compile Include="MediaVision\EngineConfiguration.cs" />
-    <Compile Include="MediaVision\ErrorCorrectionLevel.cs" />
-    <Compile Include="MediaVision\EyeCondition.cs" />
-    <Compile Include="MediaVision\FaceDetector.cs" />
-    <Compile Include="MediaVision\FaceRecognitionModel.cs" />
-    <Compile Include="MediaVision\FaceRecognitionModelType.cs" />
-    <Compile Include="MediaVision\FaceRecognitionResult.cs" />
-    <Compile Include="MediaVision\FaceRecognizer.cs" />
-    <Compile Include="MediaVision\FaceTracker.cs" />
-    <Compile Include="MediaVision\FaceTrackingModel.cs" />
-    <Compile Include="MediaVision\FaceTrackingResult.cs" />
-    <Compile Include="MediaVision\FacialExpression.cs" />
-    <Compile Include="MediaVision\ImageRecognitionResult.cs" />
-    <Compile Include="MediaVision\ImageRecognizer.cs" />
-    <Compile Include="MediaVision\ImageTracker.cs" />
-    <Compile Include="MediaVision\ImageTrackingModel.cs" />
-    <Compile Include="MediaVision\MediaVisionSource.cs" />
-    <Compile Include="MediaVision\MovementDetectedEventArgs.cs" />
-    <Compile Include="MediaVision\PersonRecognizedEventArgs.cs" />
-    <Compile Include="MediaVision\QrConfiguration.cs" />
-    <Compile Include="MediaVision\QrMode.cs" />
-    <Compile Include="MediaVision\Quadrangle.cs" />
-    <Compile Include="MediaVision\SurveillanceConfiguration.cs" />
-    <Compile Include="MediaVision\SurveillanceEngine.cs" />
-    <Compile Include="MediaVision\SurveillanceSource.cs" />
-    <Compile Include="MetadataEditor\MetadataEditor.cs" />
-    <Compile Include="MetadataEditor\MetadataEditorAttr.cs" />
-    <Compile Include="MetadataEditor\MetadataEditorErrorFactory.cs" />
-    <Compile Include="MetadataExtractor\Artwork.cs" />
-    <Compile Include="MetadataExtractor\Metadata.cs" />
-    <Compile Include="MetadataExtractor\MetadataExtractor.cs" />
-    <Compile Include="MetadataExtractor\MetadataExtractorAttr.cs" />
-    <Compile Include="MetadataExtractor\MetadataExtractorError.cs" />
-    <Compile Include="MetadataExtractor\Synclyrics.cs" />
-    <Compile Include="Player\AudioEffect.cs" />
-    <Compile Include="Player\BufferingProgressChangedEventArgs.cs" />
-    <Compile Include="Player\CapturedFrame.cs" />
-    <Compile Include="Player\DownloadProgress.cs" />
-    <Compile Include="Player\EqualizerBand.cs" />
-    <Compile Include="Player\MediaBufferSource.cs" />
-    <Compile Include="Player\MediaSource.cs" />
-    <Compile Include="Player\MediaStreamBufferStatusChangedEventArgs.cs" />
-    <Compile Include="Player\MediaStreamConfiguration.cs" />
-    <Compile Include="Player\MediaStreamSeekingOccurredEventArgs.cs" />
-    <Compile Include="Player\MediaStreamSource.cs" />
-    <Compile Include="Player\MediaUriSource.cs" />
-    <Compile Include="Player\PlaybackInterruptedEventArgs.cs" />
-    <Compile Include="Player\Player.cs" />
-    <Compile Include="Player\PlayerDisplaySettings.cs" />
-    <Compile Include="Player\PlayerEnums.cs" />
-    <Compile Include="Player\PlayerError.cs" />
-    <Compile Include="Player\PlayerErrorOccurredEventArgs.cs" />
-    <Compile Include="Player\PlayerTrackInfo.cs" />
-    <Compile Include="Player\StreamInfo.cs" />
-    <Compile Include="Player\SubtitleUpdatedEventArgs.cs" />
-    <Compile Include="Player\VideoFrameDecodedEventArgs.cs" />
-    <Compile Include="Player\VideoStreamChangedEventArgs.cs" />
-    <Compile Include="Properties\AssemblyInfo.cs" />
-    <Compile Include="Radio\Radio.cs" />
-    <Compile Include="Radio\RadioInterruptedEventArgs.cs" />
-    <Compile Include="Radio\RadioInterruptedReason.cs" />
-    <Compile Include="Radio\RadioState.cs" />
-    <Compile Include="Radio\ScanUpdatedEventArgs.cs" />
-    <Compile Include="Recorder\AudioStreamDeliveredEventArgs.cs" />
-    <Compile Include="Recorder\MuxedStreamEventArgs.cs" />
-    <Compile Include="Recorder\Recorder.cs" />
-    <Compile Include="Recorder\RecorderEnums.cs" />
-    <Compile Include="Recorder\RecorderErrorFactory.cs" />
-    <Compile Include="Recorder\RecorderFeatures.cs" />
-    <Compile Include="Recorder\RecorderInterruptedEventArgs.cs" />
-    <Compile Include="Recorder\RecorderSettings.cs" />
-    <Compile Include="Recorder\RecorderStateChangedEventArgs.cs" />
-    <Compile Include="Recorder\RecordingErrorOccurredEventArgs.cs" />
-    <Compile Include="Recorder\RecordingLimitReachedEventArgs.cs" />
-    <Compile Include="Recorder\RecordingProgressEventArgs.cs" />
-    <Compile Include="ScreenMirroring\AudioInformation.cs" />
-    <Compile Include="ScreenMirroring\ScreenMirroring.cs" />
-    <Compile Include="ScreenMirroring\ScreenMirroringEnumerations.cs" />
-    <Compile Include="ScreenMirroring\ScreenMirroringErrorFactory.cs" />
-    <Compile Include="ScreenMirroring\StateChangedEventArgs.cs" />
-    <Compile Include="ScreenMirroring\VideoInformation.cs" />
-    <Compile Include="StreamRecorder\StreamRecorder.cs" />
-    <Compile Include="StreamRecorder\StreamRecorderEnums.cs" />
-    <Compile Include="StreamRecorder\StreamRecorderErrorFactory.cs" />
-    <Compile Include="StreamRecorder\StreamRecorderNotifiedEventArgs.cs" />
-    <Compile Include="StreamRecorder\StreamRecorderVideoResolution.cs" />
-    <Compile Include="StreamRecorder\StreamRecordingBufferConsumedEventArgs.cs" />
-    <Compile Include="StreamRecorder\StreamRecordingErrorOccurredEventArgs.cs" />
-    <Compile Include="StreamRecorder\StreamRecordingLimitReachedEventArgs.cs" />
-    <Compile Include="ThumbnailExtractor\ThumbnailData.cs" />
-    <Compile Include="ThumbnailExtractor\ThumbnailExtractor.cs" />
-    <Compile Include="ThumbnailExtractor\ThumbnailExtractorErrorFactory.cs" />
-    <Compile Include="TonePlayer\TonePlayer.cs" />
-    <Compile Include="TonePlayer\TonePlayerEnums.cs" />
-    <Compile Include="TonePlayer\TonePlayerErrorFactory.cs" />
-    <Compile Include="Utility\AudioCodec.cs" />
-    <Compile Include="Utility\ImageColorSpace.cs" />
-    <Compile Include="Utility\ImageData.cs" />
-    <Compile Include="Utility\ImageDecoder.cs" />
-    <Compile Include="Utility\ImageEncoder.cs" />
-    <Compile Include="Utility\ImageFormat.cs" />
-    <Compile Include="Utility\ImageRotation.cs" />
-    <Compile Include="Utility\ImageTransformer.cs" />
-    <Compile Include="Utility\ImageUtility.cs" />
-    <Compile Include="Utility\JpegDownscale.cs" />
-    <Compile Include="Utility\PngCompressionLevel.cs" />
-    <Compile Include="Utility\VideoCodec.cs" />
-    <Compile Include="Utility\VideoFileFormat.cs" />
-    <Compile Include="Utility\VideoTranscoder.cs" />
-    <Compile Include="WavPlayer\WavPlayer.cs" />
-    <Compile Include="WavPlayer\WavPlayerErrorFactory.cs" />
-    <Compile Include="MediaVision\PersonRecognizer.cs" />
-    <Compile Include="MediaVision\PersonRecognitionInfo.cs" />
-    <Compile Include="MediaVision\PersonRecognitionConfiguration.cs" />
-    <Compile Include="MediaVision\PersonAppearanceDetector.cs" />
-    <Compile Include="MediaVision\PersonAppearanceDetectionConfiguration.cs" />
-    <Compile Include="MediaVision\PersonAppearanceDetectedEventArgs.cs" />
-    <Compile Include="MediaVision\MovementDetector.cs" />
-    <Compile Include="MediaVision\MovementDetectionConfiguration.cs" />
-    <Compile Include="MediaVision\MediaVisionError.cs" />
-    <Compile Include="MediaVision\ImageTrackingConfiguration.cs" />
-    <Compile Include="MediaVision\ImageRecognitionConfiguration.cs" />
-    <Compile Include="MediaVision\ImageObject.cs" />
-    <Compile Include="MediaVision\ImageFillConfiguration.cs" />
-    <Compile Include="MediaVision\FaceRecognitionConfiguration.cs" />
-    <Compile Include="MediaVision\FaceDetectionConfiguration.cs" />
-    <Compile Include="MediaVision\BarcodeGenerationConfiguration.cs" />
-    <Compile Include="MediaVision\BarcodeDetectionTarget.cs" />
-    <Compile Include="MediaVision\BarcodeDetectionConfiguration.cs" />
-  </ItemGroup>
-  <ItemGroup>
-    <None Include="Tizen.Multimedia.nuspec" />
-    <None Include="Tizen.Multimedia.project.json" />
-    <None Include="Tizen.Multimedia.snk" />
+    <PackageReference Include="ElmSharp" Version="1.1.0-*" />
+    <PackageReference Include="Tizen" Version="1.0.3" />
+    <PackageReference Include="Tizen.Applications.Common" Version="1.4.2" />
+    <PackageReference Include="Tizen.System.Information" Version="1.0.3" />
   </ItemGroup>
-  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
-  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
-       Other similar extension points exist, see Microsoft.Common.targets.
-  <Target Name="BeforeBuild">
-  </Target>
-  <Target Name="AfterBuild">
-  </Target>
-  -->
-  <PropertyGroup>
-    <!-- https://github.com/dotnet/corefxlab/tree/master/samples/NetCoreSample and
-       https://docs.microsoft.com/en-us/dotnet/articles/core/tutorials/target-dotnetcore-with-msbuild
-    -->
-    <!-- We don't use any of MSBuild's resolution logic for resolving the framework, so just set these two
-       properties to any folder that exists to skip the GetReferenceAssemblyPaths task (not target) and
-       to prevent it from outputting a warning (MSB3644).
-    -->
-    <_TargetFrameworkDirectories>$(MSBuildThisFileDirectory)</_TargetFrameworkDirectories>
-    <_FullFrameworkReferenceAssemblyPaths>$(MSBuildThisFileDirectory)</_FullFrameworkReferenceAssemblyPaths>
-    <AutoUnifyAssemblyReferences>true</AutoUnifyAssemblyReferences>
-  </PropertyGroup>
+
 </Project>
index 2ebe0da..e0950c8 100755 (executable)
@@ -16,7 +16,4 @@
       <dependency id="Tizen.Applications.Common" version="1.4.2" />
     </dependencies>
        </metadata>
-  <files>
-    <file src="bin/$Configuration$/Tizen.Multimedia.dll" target="lib/netstandard1.3" />
-  </files>
 </package>
diff --git a/src/Tizen.Multimedia/Tizen.Multimedia.project.json b/src/Tizen.Multimedia/Tizen.Multimedia.project.json
deleted file mode 100755 (executable)
index 70b67cc..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-{
-  "dependencies": {
-    "ElmSharp": "1.1.0-*",
-    "NETStandard.Library": "1.6.1",
-    "Tizen": "1.0.3",
-    "Tizen.Applications.Common": "1.4.2",
-    "Tizen.System.Information": "1.0.3"
-  },
-  "frameworks": {
-    "netstandard1.3": {}
-  }
-}