OSDN Git Service

Add TweenCS.csproj
authorEgtra <yusuke.ichinohe@gmail.com>
Sun, 20 Nov 2011 13:42:23 +0000 (22:42 +0900)
committerKimura Youichi <kim.upsilon@bucyou.net>
Wed, 22 Feb 2012 10:16:36 +0000 (19:16 +0900)
Tween.sln
Tween/Tween.vbproj
TweenCS/Properties/AssemblyInfo.cs [new file with mode: 0644]
TweenCS/TweenCS.csproj [new file with mode: 0644]

index e133bcb..6c734fb 100644 (file)
--- a/Tween.sln
+++ b/Tween.sln
@@ -1,10 +1,12 @@
 
 Microsoft Visual Studio Solution File, Format Version 11.00
-# Visual Basic Express 2010
+# Visual Studio 2010
 Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Tween", "Tween\Tween.vbproj", "{41B54F21-5442-47D4-80F0-872D56D9E1FD}"
 EndProject
 Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "TweenUp", "TweenUp\TweenUp.vbproj", "{EF3CD31B-6669-4932-A0E0-1EA44E4BCE89}"
 EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TweenCS", "TweenCS\TweenCS.csproj", "{3D8995C7-BDF3-4273-9F9D-DDD902F6A101}"
+EndProject
 Global
        GlobalSection(SolutionConfigurationPlatforms) = preSolution
                Debug|Any CPU = Debug|Any CPU
@@ -36,6 +38,16 @@ Global
                {EF3CD31B-6669-4932-A0E0-1EA44E4BCE89}.Release|x64.Build.0 = Release|x64
                {EF3CD31B-6669-4932-A0E0-1EA44E4BCE89}.Release|x86.ActiveCfg = Release|x86
                {EF3CD31B-6669-4932-A0E0-1EA44E4BCE89}.Release|x86.Build.0 = Release|x86
+               {3D8995C7-BDF3-4273-9F9D-DDD902F6A101}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+               {3D8995C7-BDF3-4273-9F9D-DDD902F6A101}.Debug|Any CPU.Build.0 = Debug|Any CPU
+               {3D8995C7-BDF3-4273-9F9D-DDD902F6A101}.Debug|x64.ActiveCfg = Debug|Any CPU
+               {3D8995C7-BDF3-4273-9F9D-DDD902F6A101}.Debug|x86.ActiveCfg = Debug|Any CPU
+               {3D8995C7-BDF3-4273-9F9D-DDD902F6A101}.Debug|x86.Build.0 = Debug|Any CPU
+               {3D8995C7-BDF3-4273-9F9D-DDD902F6A101}.Release|Any CPU.ActiveCfg = Release|Any CPU
+               {3D8995C7-BDF3-4273-9F9D-DDD902F6A101}.Release|Any CPU.Build.0 = Release|Any CPU
+               {3D8995C7-BDF3-4273-9F9D-DDD902F6A101}.Release|x64.ActiveCfg = Release|Any CPU
+               {3D8995C7-BDF3-4273-9F9D-DDD902F6A101}.Release|x86.ActiveCfg = Release|Any CPU
+               {3D8995C7-BDF3-4273-9F9D-DDD902F6A101}.Release|x86.Build.0 = Release|Any CPU
        EndGlobalSection
        GlobalSection(SolutionProperties) = preSolution
                HideSolutionNode = FALSE
index c716d98..afb2c3f 100644 (file)
       <Install>true</Install>
     </BootstrapperPackage>
   </ItemGroup>
+  <ItemGroup>
+    <ProjectReference Include="..\TweenCS\TweenCS.csproj">
+      <Project>{3D8995C7-BDF3-4273-9F9D-DDD902F6A101}</Project>
+      <Name>TweenCS</Name>
+    </ProjectReference>
+  </ItemGroup>
   <Import Project="$(MSBuildBinPath)\Microsoft.VisualBasic.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.
diff --git a/TweenCS/Properties/AssemblyInfo.cs b/TweenCS/Properties/AssemblyInfo.cs
new file mode 100644 (file)
index 0000000..a3cb86e
--- /dev/null
@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// アセンブリに関する一般情報は以下の属性セットをとおして制御されます。
+// アセンブリに関連付けられている情報を変更するには、
+// これらの属性値を変更してください。
+[assembly: AssemblyTitle("TweenCS")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("TweenCS")]
+[assembly: AssemblyCopyright("Copyright ©  2011")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// ComVisible を false に設定すると、その型はこのアセンブリ内で COM コンポーネントから 
+// 参照不可能になります。COM からこのアセンブリ内の型にアクセスする場合は、
+// その型の ComVisible 属性を true に設定してください。
+[assembly: ComVisible(false)]
+
+// 次の GUID は、このプロジェクトが COM に公開される場合の、typelib の ID です
+[assembly: Guid("2d0ae0ba-adac-49a2-9b10-26fd69e695bf")]
+
+// アセンブリのバージョン情報は、以下の 4 つの値で構成されています:
+//
+//      Major Version
+//      Minor Version 
+//      Build Number
+//      Revision
+//
+// すべての値を指定するか、下のように '*' を使ってビルドおよびリビジョン番号を 
+// 既定値にすることができます:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/TweenCS/TweenCS.csproj b/TweenCS/TweenCS.csproj
new file mode 100644 (file)
index 0000000..af75ac5
--- /dev/null
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+  <PropertyGroup>
+    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+    <ProductVersion>8.0.30703</ProductVersion>
+    <SchemaVersion>2.0</SchemaVersion>
+    <ProjectGuid>{3D8995C7-BDF3-4273-9F9D-DDD902F6A101}</ProjectGuid>
+    <OutputType>Library</OutputType>
+    <AppDesignerFolder>Properties</AppDesignerFolder>
+    <RootNamespace>Tween</RootNamespace>
+    <AssemblyName>TweenCS</AssemblyName>
+    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
+    <FileAlignment>512</FileAlignment>
+  </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>
+  <ItemGroup>
+    <Reference Include="System" />
+    <Reference Include="System.Core" />
+    <Reference Include="System.Xml.Linq" />
+    <Reference Include="System.Data.DataSetExtensions" />
+    <Reference Include="Microsoft.CSharp" />
+    <Reference Include="System.Data" />
+    <Reference Include="System.Xml" />
+  </ItemGroup>
+  <ItemGroup>
+    <Compile Include="Properties\AssemblyInfo.cs" />
+  </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>
+  -->
+</Project>
\ No newline at end of file