Remove building dummy stuffs
authorWonYoung Choi <wy80.choi@samsung.com>
Thu, 17 Aug 2017 01:47:07 +0000 (10:47 +0900)
committerWonYoung Choi <wy80.choi@samsung.com>
Thu, 17 Aug 2017 01:47:07 +0000 (10:47 +0900)
Change-Id: Ibabed5eeb065607790d78859ba9a2a96e943ba27

.dummy/Tizen.NET.Dummy.csproj [deleted file]
.dummy/tools/GenAPI.exe [deleted file]
.dummy/tools/GenAPI.runtimeconfig.json [deleted file]
.dummy/tools/Microsoft.Cci.Extensions.dll [deleted file]
.dummy/tools/Microsoft.Cci.dll [deleted file]

diff --git a/.dummy/Tizen.NET.Dummy.csproj b/.dummy/Tizen.NET.Dummy.csproj
deleted file mode 100644 (file)
index c5bab2c..0000000
+++ /dev/null
@@ -1,124 +0,0 @@
-<Project DefaultTargets="Build">
-
-  <Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
-
-  <PropertyGroup>
-    <TargetFramework>netstandard1.6</TargetFramework>
-    <GenerateDependencyFile>false</GenerateDependencyFile>
-    <DummyAssemblyVersion>99.0.0</DummyAssemblyVersion>
-  </PropertyGroup>
-
-  <!-- Properties for directories -->
-  <PropertyGroup>
-    <ToolsDir>$(MSBuildThisFileDirectory)tools\</ToolsDir>
-    <GenAPISourceDir>$(MSBuildThisFileDirectory)\..\binaries\frameworks\</GenAPISourceDir>
-    <GenAPILibDir>$(MSBuildThisFileDirectory)obj\lib\</GenAPILibDir>
-    <GenAPITargetDir>$(MSBuildThisFileDirectory)obj\ref\</GenAPITargetDir>
-    <DummyOutputPath>$(MSBuildThisFileDirectory)\..\binaries\frameworks_dummy</DummyOutputPath>
-  </PropertyGroup>
-
-  <!-- Properties for GenAPI tool -->
-  <PropertyGroup>
-    <GenAPIPath>$(ToolsDir)GenAPI.exe</GenAPIPath>
-    <GenAPICommand>dotnet $(GenAPIPath)</GenAPICommand>
-  </PropertyGroup>
-
-  <!-- Source assemblies -->
-  <ItemGroup>
-    <TizenAssemblies Include="$(GenAPISourceDir)*.dll" />
-  </ItemGroup>
-
-  <Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
-
-  <Target Name="Compile" />
-  <Target Name="CopyFilesToOutputDirectory" />
-
-  <!-- Target for preparing reference lib directory -->
-  <Target Name="Prepare">
-    <ItemGroup>
-      <ReferencePath Include="@(TizenAssemblies)" />
-    </ItemGroup>
-    <MakeDir Directories="$(GenAPILibDir);$(GenAPITargetDir)" />
-    <Copy SourceFiles="@(ReferencePath)" DestinationFolder="$(GenAPILibDir)" />
-  </Target>
-
-  <!-- Target for generating *.AssemblyInfo.cs files -->
-  <Target Name="GenerateAsmInfo"
-          Inputs="@(TizenAssemblies)" Outputs="$(GenAPITargetDir)%(Filename).AssemblyInfo.cs">
-
-    <PropertyGroup>
-      <GeneratedAssemblyInfoSource>$(GenAPITargetDir)%(TizenAssemblies.Filename).AssemblyInfo.cs</GeneratedAssemblyInfoSource>
-    </PropertyGroup>
-
-    <ItemGroup>
-      <AssemblyInfoLines Include="[assembly:System.Reflection.AssemblyVersion(&quot;$(DummyAssemblyVersion)&quot;)]" />
-    </ItemGroup>
-
-    <WriteLinesToFile
-      File="$(GeneratedAssemblyInfoSource)"
-      Lines="@(AssemblyInfoLines)"
-      Overwrite="true" />
-
-    <ItemGroup>
-      <FileWrites Include="$(GeneratedAssemblyInfoSource)" />
-    </ItemGroup>
-
-  </Target>
-
-  <!-- Target for generating reference source files using GenAPI -->
-  <Target Name="GenerateAPI"
-          Inputs="@(TizenAssemblies)" Outputs="$(GenAPITargetDir)%(Filename).cs">
-    <PropertyGroup>
-      <GeneratedReferenceAssemblySource>$(GenAPITargetDir)%(TizenAssemblies.Filename).cs</GeneratedReferenceAssemblySource>
-    </PropertyGroup>
-
-    <Message Text="[GenAPI] %(TizenAssemblies.Filename) -> $(GeneratedReferenceAssemblySource)" Importance="High" />
-
-    <Exec Command='$(GenAPICommand) -assembly:&quot;%(TizenAssemblies.Identity)&quot; -libPath:&quot;$(GenAPILibDir)&quot; -out:&quot;$(GeneratedReferenceAssemblySource)&quot; -throw:&quot;Not Supported Feature&quot; -global' />
-  </Target>
-
-
-  <Target Name="GenerateDummy"
-          DependsOnTargets="GenerateAsmInfo;GenerateAPI"
-          Inputs="@(TizenAssemblies)" Outputs="$(OutputPath)%(TizenAssemblies.Filename).dll">
-    <PropertyGroup>
-      <ThisAssemblyFilename>%(TizenAssemblies.Filename)</ThisAssemblyFilename>
-      <GeneratedAssemblyInfoSource>$(GenAPITargetDir)%(TizenAssemblies.Filename).AssemblyInfo.cs</GeneratedAssemblyInfoSource>
-      <GeneratedReferenceAssemblySource>$(GenAPITargetDir)%(TizenAssemblies.Filename).cs</GeneratedReferenceAssemblySource>
-      <GeneratedReferenceAssembly>$(OutputPath)%(TizenAssemblies.Filename).dll</GeneratedReferenceAssembly>
-    </PropertyGroup>
-
-    <Message Text="[Compile] %(TizenAssemblies.Filename) -> $(GeneratedReferenceAssembly)" Importance="High" />
-
-    <ItemGroup>
-      <FilteredReferencePath Include="@(ReferencePath)" Condition="%(Filename) != $(ThisAssemblyFilename)" />
-    </ItemGroup>
-
-    <Csc
-        Sources="$(GeneratedReferenceAssemblySource);$(GeneratedAssemblyInfoSource)"
-        OutputAssembly="$(GeneratedReferenceAssembly)"
-        AdditionalLibPaths="$(AdditionalLibPaths)"
-        AllowUnsafeBlocks="true"
-        DefineConstants="$(DefineConstants)"
-        DisabledWarnings="$(NoWarn)"
-        TargetType="$(OutputType)"
-        NoStandardLib="$(NoCompilerStandardLib)"
-        References="@(FilteredReferencePath)"
-        ToolExe="$(CscToolExe)"
-        ToolPath="$(CscToolPath)" />
-
-  </Target>
-
-  <Target Name="AfterBuild" DependsOnTargets="Prepare;GenerateDummy">
-    <RemoveDir Directories="$(DummyOutputPath)" />
-    <MakeDir Directories="$(DummyOutputPath)" />
-
-    <ItemGroup>
-      <TizenRefAssemblies Include="$(OutDir)/*.dll" />
-    </ItemGroup>
-
-    <Copy SourceFiles="@(TizenRefAssemblies)" DestinationFolder="$(DummyOutputPath)" />
-  </Target>
-
-</Project>
-
diff --git a/.dummy/tools/GenAPI.exe b/.dummy/tools/GenAPI.exe
deleted file mode 100755 (executable)
index 53b1473..0000000
Binary files a/.dummy/tools/GenAPI.exe and /dev/null differ
diff --git a/.dummy/tools/GenAPI.runtimeconfig.json b/.dummy/tools/GenAPI.runtimeconfig.json
deleted file mode 100644 (file)
index 9b04e48..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-  "runtimeOptions": {
-    "tfm": "netcoreapp2.0",
-    "framework": {
-      "name": "Microsoft.NETCore.App",
-      "version": "2.0.0-*"
-    }
-  }
-}
diff --git a/.dummy/tools/Microsoft.Cci.Extensions.dll b/.dummy/tools/Microsoft.Cci.Extensions.dll
deleted file mode 100644 (file)
index 2ce23b6..0000000
Binary files a/.dummy/tools/Microsoft.Cci.Extensions.dll and /dev/null differ
diff --git a/.dummy/tools/Microsoft.Cci.dll b/.dummy/tools/Microsoft.Cci.dll
deleted file mode 100755 (executable)
index 0956d9a..0000000
Binary files a/.dummy/tools/Microsoft.Cci.dll and /dev/null differ