Fix build break
authorWonYoung Choi <wy80.choi@samsung.com>
Thu, 24 Mar 2016 01:40:51 +0000 (10:40 +0900)
committerWonYoung Choi <wy80.choi@samsung.com>
Thu, 24 Mar 2016 01:40:51 +0000 (10:40 +0900)
Change-Id: If3af1eebd7fb6166bcfc21d2188a75d3660a7edb

AppFW.sln [deleted file]
Tizen.Applications/Interop/Interop.AppCommon.cs
Tizen.Applications/Tizen.Applications.csproj.user

diff --git a/AppFW.sln b/AppFW.sln
deleted file mode 100755 (executable)
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
index 7373549f9b2a250e2ce167fd26e9a69e90441ead..a93f22db78bca5a32eebcb8fe3c409f16b4c398e 100755 (executable)
@@ -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);
     }
 }
index 5283ef199bae7a338ba5ea44af69ce03e46fc63f..ca1d04b08791eefdb5ca2d5af2038cb28e9e7558 100755 (executable)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
   <PropertyGroup>
-    <ProjectView>ShowAllFiles</ProjectView>
+    <ProjectView>ProjectFiles</ProjectView>
   </PropertyGroup>
 </Project>
\ No newline at end of file