From 8d15328f6f251dd3a531e5ee01fb890e4a16475d Mon Sep 17 00:00:00 2001 From: WonYoung Choi Date: Thu, 24 Mar 2016 10:40:51 +0900 Subject: [PATCH] Fix build break Change-Id: If3af1eebd7fb6166bcfc21d2188a75d3660a7edb --- AppFW.sln | 34 ----------------------- Tizen.Applications/Interop/Interop.AppCommon.cs | 26 ++++++++--------- Tizen.Applications/Tizen.Applications.csproj.user | 2 +- 3 files changed, 14 insertions(+), 48 deletions(-) delete mode 100755 AppFW.sln diff --git a/AppFW.sln b/AppFW.sln deleted file mode 100755 index 4d309af..0000000 --- a/AppFW.sln +++ /dev/null @@ -1,34 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -VisualStudioVersion = 14.0.24720.0 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tizen.Applications", "Tizen.Applications\Tizen.Applications.csproj", "{663C5A3D-E631-4987-AEE7-F498C56A40FC}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tizen", "..\tizen\Tizen\Tizen.csproj", "{7659CA59-410D-41A1-9841-586E88BC78C9}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tizen.Internals", "..\tizen\Tizen.Internals\Tizen.Internals.csproj", "{B9AA1CB2-F72D-4A30-A33B-A20C850A38A0}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {663C5A3D-E631-4987-AEE7-F498C56A40FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {663C5A3D-E631-4987-AEE7-F498C56A40FC}.Debug|Any CPU.Build.0 = Debug|Any CPU - {663C5A3D-E631-4987-AEE7-F498C56A40FC}.Release|Any CPU.ActiveCfg = Release|Any CPU - {663C5A3D-E631-4987-AEE7-F498C56A40FC}.Release|Any CPU.Build.0 = Release|Any CPU - {7659CA59-410D-41A1-9841-586E88BC78C9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {7659CA59-410D-41A1-9841-586E88BC78C9}.Debug|Any CPU.Build.0 = Debug|Any CPU - {7659CA59-410D-41A1-9841-586E88BC78C9}.Release|Any CPU.ActiveCfg = Release|Any CPU - {7659CA59-410D-41A1-9841-586E88BC78C9}.Release|Any CPU.Build.0 = Release|Any CPU - {B9AA1CB2-F72D-4A30-A33B-A20C850A38A0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {B9AA1CB2-F72D-4A30-A33B-A20C850A38A0}.Debug|Any CPU.Build.0 = Debug|Any CPU - {B9AA1CB2-F72D-4A30-A33B-A20C850A38A0}.Release|Any CPU.ActiveCfg = Release|Any CPU - {B9AA1CB2-F72D-4A30-A33B-A20C850A38A0}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/Tizen.Applications/Interop/Interop.AppCommon.cs b/Tizen.Applications/Interop/Interop.AppCommon.cs index 7373549..a93f22d 100755 --- a/Tizen.Applications/Interop/Interop.AppCommon.cs +++ b/Tizen.Applications/Interop/Interop.AppCommon.cs @@ -16,43 +16,43 @@ internal static partial class Interop { internal static partial class AppCommon { - [DllImport(Libraries.AppCommon, EntryPoint = "app_get_id", CallingConvention = CallingConvention.Cdecl)] + [DllImport(Libraries.AppCommon, EntryPoint = "app_get_id")] internal static extern ErrorCode AppGetId(out string appId); - [DllImport(Libraries.AppCommon, EntryPoint = "app_get_name", CallingConvention = CallingConvention.Cdecl)] + [DllImport(Libraries.AppCommon, EntryPoint = "app_get_name")] internal static extern ErrorCode AppGetName(out string name); - [DllImport(Libraries.AppCommon, EntryPoint = "app_get_resource_path", CallingConvention = CallingConvention.Cdecl)] + [DllImport(Libraries.AppCommon, EntryPoint = "app_get_resource_path")] internal static extern string AppGetResourcePath(); - [DllImport(Libraries.AppCommon, EntryPoint = "app_get_data_path", CallingConvention = CallingConvention.Cdecl)] + [DllImport(Libraries.AppCommon, EntryPoint = "app_get_data_path")] internal static extern string AppGetDataPath(); - [DllImport(Libraries.AppCommon, EntryPoint = "app_get_cache_path", CallingConvention = CallingConvention.Cdecl)] + [DllImport(Libraries.AppCommon, EntryPoint = "app_get_cache_path")] internal static extern string AppGetCachePath(); - [DllImport(Libraries.AppCommon, EntryPoint = "app_get_shared_data_path, CallingConvention = CallingConvention.Cdecl")] + [DllImport(Libraries.AppCommon, EntryPoint = "app_get_shared_data_path")] internal static extern string AppGetSharedDataPath(); - [DllImport(Libraries.AppCommon, EntryPoint = "app_get_shared_resource_path", CallingConvention = CallingConvention.Cdecl)] + [DllImport(Libraries.AppCommon, EntryPoint = "app_get_shared_resource_path")] internal static extern string AppGetSharedResourcePath(); - [DllImport(Libraries.AppCommon, EntryPoint = "app_get_shared_trusted_path", CallingConvention = CallingConvention.Cdecl)] + [DllImport(Libraries.AppCommon, EntryPoint = "app_get_shared_trusted_path")] internal static extern string AppGetSharedTrustedPath(); - [DllImport(Libraries.AppCommon, EntryPoint = "app_get_tep_resource_path", CallingConvention = CallingConvention.Cdecl)] + [DllImport(Libraries.AppCommon, EntryPoint = "app_get_tep_resource_path")] internal static extern string AppGetTepResourcePath(); - [DllImport(Libraries.AppCommon, EntryPoint = "app_get_external_cache_path", CallingConvention = CallingConvention.Cdecl)] + [DllImport(Libraries.AppCommon, EntryPoint = "app_get_external_cache_path")] internal static extern string AppGetExternalCachePath(); - [DllImport(Libraries.AppCommon, EntryPoint = "app_get_external_data_path", CallingConvention = CallingConvention.Cdecl)] + [DllImport(Libraries.AppCommon, EntryPoint = "app_get_external_data_path")] internal static extern string AppGetExternalDataPath(); - [DllImport(Libraries.AppCommon, EntryPoint = "app_get_external_shared_data_path", CallingConvention = CallingConvention.Cdecl)] + [DllImport(Libraries.AppCommon, EntryPoint = "app_get_external_shared_data_path")] internal static extern string AppGetExternalSharedDataPath(); - [DllImport(Libraries.AppCommon, EntryPoint = "app_get_version", CallingConvention = CallingConvention.Cdecl)] + [DllImport(Libraries.AppCommon, EntryPoint = "app_get_version")] internal static extern ErrorCode AppGetVersion(out string version); } } diff --git a/Tizen.Applications/Tizen.Applications.csproj.user b/Tizen.Applications/Tizen.Applications.csproj.user index 5283ef1..ca1d04b 100755 --- a/Tizen.Applications/Tizen.Applications.csproj.user +++ b/Tizen.Applications/Tizen.Applications.csproj.user @@ -1,6 +1,6 @@  - ShowAllFiles + ProjectFiles \ No newline at end of file -- 2.7.4