├── .gitignore
├── 1_DeleteDir.bat
├── 2_DeleteFile.bat
├── ASPNET
├── AuthN_AuthZ
│ ├── ID-Federation
│ │ ├── ClaimsWeb_sample
│ │ │ ├── ClaimsWeb_sample.csproj
│ │ │ ├── Default.aspx
│ │ │ ├── Default.aspx.cs
│ │ │ ├── Default.aspx.designer.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── Web.Debug.config
│ │ │ ├── Web.Release.config
│ │ │ ├── Web.config
│ │ │ └── web.config_
│ │ └── README.md
│ └── OpenID_Connect
│ │ ├── OpenIDConnect_sample
│ │ ├── .nuget
│ │ │ ├── NuGet.Config
│ │ │ └── NuGet.targets
│ │ ├── OpenIDConnect_sample.sln
│ │ └── OpenIDConnect_sample
│ │ │ ├── App_Start
│ │ │ └── Startup.Auth.cs
│ │ │ ├── Default.aspx
│ │ │ ├── Default.aspx.cs
│ │ │ ├── Default.aspx.designer.cs
│ │ │ ├── Error.aspx
│ │ │ ├── Error.aspx.cs
│ │ │ ├── Error.aspx.designer.cs
│ │ │ ├── Global.asax
│ │ │ ├── Global.asax.cs
│ │ │ ├── OpenIDConnect_sample.csproj
│ │ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ │ ├── Startup.cs
│ │ │ ├── Web.Debug.config
│ │ │ ├── Web.Release.config
│ │ │ ├── Web.config
│ │ │ ├── app.config
│ │ │ └── packages.config
│ │ └── README.md
├── MSTranslatorAPI
│ ├── AdmAccessToken.cs
│ ├── AdmAuthentication.cs
│ ├── Global.asax
│ ├── Global.asax.cs
│ ├── MicrosoftTranslator.csproj
│ ├── Scripts
│ │ ├── Main.js
│ │ ├── jquery-1.4.1-vsdoc.js
│ │ ├── jquery-1.4.1.js
│ │ └── jquery-1.4.1.min.js
│ ├── Site.Master
│ ├── Site.Master.cs
│ ├── Site.Master.designer.cs
│ ├── Styles
│ │ └── Site.css
│ ├── Translate.aspx
│ ├── Translate.aspx.cs
│ ├── Translate.aspx.designer.cs
│ └── Web.config
├── SignalR
│ ├── .nuget
│ │ ├── NuGet.Config
│ │ ├── NuGet.exe
│ │ └── NuGet.targets
│ ├── SignalRChat.sln
│ └── SignalRChat
│ │ ├── ChatHub.cs
│ │ ├── ChatWindow.aspx
│ │ ├── ChatWindow.aspx.cs
│ │ ├── ChatWindow.aspx.designer.cs
│ │ ├── Properties
│ │ └── AssemblyInfo.cs
│ │ ├── README.md
│ │ ├── Scripts
│ │ ├── jquery-1.6.4.min.js
│ │ ├── jquery.signalR-2.2.0.js
│ │ └── jquery.signalR-2.2.0.min.js
│ │ ├── SignalRChat.csproj
│ │ ├── Startup.cs
│ │ ├── Style
│ │ └── Common.css
│ │ ├── Web.config
│ │ └── packages.config
└── WebForm
│ ├── Mobile
│ ├── ResponseFilter
│ │ ├── App_Code
│ │ │ ├── ToHankakuFilterStream.cs
│ │ │ └── ToHankakuHttpModule.cs
│ │ ├── Default.aspx
│ │ ├── Default.aspx.cs
│ │ ├── Global.asax
│ │ ├── ResponseFilter.sln
│ │ └── Web.Config
│ └── VwS_HdnToSsn
│ │ ├── ProcessingMode1
│ │ ├── App_Code
│ │ │ ├── BasePage.cs
│ │ │ └── CustQueue.cs
│ │ ├── Default1.aspx
│ │ ├── Default1.aspx.cs
│ │ ├── Default2.aspx
│ │ ├── Default2.aspx.cs
│ │ ├── Default3.aspx
│ │ ├── Default3.aspx.cs
│ │ ├── MasterPage.master
│ │ ├── MasterPage.master.cs
│ │ ├── ProcessingMode1.sln
│ │ └── Web.Config
│ │ └── ProcessingMode2
│ │ ├── App_Browsers
│ │ └── BrowserFile.browser
│ │ ├── App_Code
│ │ └── CustomPageAdapter.cs
│ │ ├── Default1.aspx
│ │ ├── Default1.aspx.cs
│ │ ├── Default2.aspx
│ │ ├── Default2.aspx.cs
│ │ ├── Default3.aspx
│ │ ├── Default3.aspx.cs
│ │ ├── ProcessingMode2.sln
│ │ └── Web.Config
│ └── jqGridandWCF
│ ├── jqGridandWCF.sln
│ └── jqGridandWCF
│ ├── Content
│ ├── jquery.jqGrid
│ │ └── ui.jqgrid.css
│ └── themes
│ │ └── base
│ │ ├── accordion.css
│ │ ├── all.css
│ │ ├── autocomplete.css
│ │ ├── base.css
│ │ ├── button.css
│ │ ├── core.css
│ │ ├── datepicker.css
│ │ ├── dialog.css
│ │ ├── draggable.css
│ │ ├── images
│ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ ├── ui-icons_222222_256x240.png
│ │ ├── ui-icons_2e83ff_256x240.png
│ │ ├── ui-icons_454545_256x240.png
│ │ ├── ui-icons_888888_256x240.png
│ │ └── ui-icons_cd0a0a_256x240.png
│ │ ├── menu.css
│ │ ├── progressbar.css
│ │ ├── resizable.css
│ │ ├── selectable.css
│ │ ├── selectmenu.css
│ │ ├── slider.css
│ │ ├── sortable.css
│ │ ├── spinner.css
│ │ ├── tabs.css
│ │ ├── theme.css
│ │ └── tooltip.css
│ ├── IJSONService.cs
│ ├── JSONService.svc
│ ├── JSONService.svc.cs
│ ├── Properties
│ └── AssemblyInfo.cs
│ ├── Scripts
│ ├── i18n
│ │ ├── grid.locale-ar.js
│ │ ├── grid.locale-bg.js
│ │ ├── grid.locale-bg1251.js
│ │ ├── grid.locale-cat.js
│ │ ├── grid.locale-cn.js
│ │ ├── grid.locale-cs.js
│ │ ├── grid.locale-da.js
│ │ ├── grid.locale-de.js
│ │ ├── grid.locale-dk.js
│ │ ├── grid.locale-el.js
│ │ ├── grid.locale-en.js
│ │ ├── grid.locale-es.js
│ │ ├── grid.locale-fa.js
│ │ ├── grid.locale-fi.js
│ │ ├── grid.locale-fr.js
│ │ ├── grid.locale-gl.js
│ │ ├── grid.locale-he.js
│ │ ├── grid.locale-hr.js
│ │ ├── grid.locale-hr1250.js
│ │ ├── grid.locale-hu.js
│ │ ├── grid.locale-id.js
│ │ ├── grid.locale-is.js
│ │ ├── grid.locale-it.js
│ │ ├── grid.locale-ja.js
│ │ ├── grid.locale-kr.js
│ │ ├── grid.locale-lt.js
│ │ ├── grid.locale-mne.js
│ │ ├── grid.locale-nl.js
│ │ ├── grid.locale-no.js
│ │ ├── grid.locale-pl.js
│ │ ├── grid.locale-pt-br.js
│ │ ├── grid.locale-pt.js
│ │ ├── grid.locale-ro.js
│ │ ├── grid.locale-ru.js
│ │ ├── grid.locale-sk.js
│ │ ├── grid.locale-sr-latin.js
│ │ ├── grid.locale-sr.js
│ │ ├── grid.locale-sv.js
│ │ ├── grid.locale-th.js
│ │ ├── grid.locale-tr.js
│ │ ├── grid.locale-tw.js
│ │ ├── grid.locale-ua.js
│ │ └── grid.locale-vi.js
│ ├── jquery-2.1.3.intellisense.js
│ ├── jquery-2.1.3.js
│ ├── jquery-2.1.3.min.js
│ ├── jquery-2.1.3.min.map
│ ├── jquery-ui-1.11.2.js
│ ├── jquery-ui-1.11.2.min.js
│ ├── jquery.jqGrid.min.js
│ └── jquery.jqGrid.src.js
│ ├── Web.Debug.config
│ ├── Web.Release.config
│ ├── Web.config
│ ├── WebForm1.aspx
│ ├── WebForm1.aspx.cs
│ ├── WebForm1.aspx.designer.cs
│ └── jqGridandWCF.csproj
├── Azure
├── DotNet4ApacheSpark
│ ├── MLSparkModel
│ │ └── text.txt
│ ├── MySparkApp
│ │ ├── MySparkApp.sln
│ │ └── MySparkApp
│ │ │ ├── MySparkApp.csproj
│ │ │ ├── Program.cs
│ │ │ └── input.txt
│ ├── mySparkBatchApp
│ │ ├── mySparkBatchApp.sln
│ │ └── mySparkBatchApp
│ │ │ ├── Program.cs
│ │ │ ├── mySparkBatchApp.csproj
│ │ │ └── projects_smaller.csv
│ └── mySparkStreamingApp
│ │ ├── mySparkStreamingApp.sln
│ │ └── mySparkStreamingApp
│ │ ├── Program.cs
│ │ └── mySparkStreamingApp.csproj
└── ElasticDatabase
│ ├── ElasticDB_Sample
│ ├── .nuget
│ │ ├── NuGet.Config
│ │ ├── NuGet.exe
│ │ └── NuGet.targets
│ ├── ElasticDB_Sample.sln
│ └── ElasticScaleStarterKit
│ │ ├── App.config
│ │ ├── Configuration.cs
│ │ ├── ConsoleUtils.cs
│ │ ├── CreateShardSample.cs
│ │ ├── DataDependentRoutingSample.cs
│ │ ├── ElasticScaleStarterKit.csproj
│ │ ├── InitializeShard.sql
│ │ ├── MultiShardQuerySample.cs
│ │ ├── Program.cs
│ │ ├── README.txt
│ │ ├── ShardManagementUtils.cs
│ │ ├── SqlDatabaseUtils.cs
│ │ ├── TableFormatter.cs
│ │ └── packages.config
│ ├── ElasticDB_Sample2
│ └── ElasticScaleStarterKit
│ │ ├── .nuget
│ │ ├── NuGet.Config
│ │ ├── NuGet.exe
│ │ └── NuGet.targets
│ │ ├── ElasticScaleStarterKit.sln
│ │ └── ElasticScaleStarterKit
│ │ ├── ConsoleUtils.cs
│ │ ├── CreateShardSample.cs
│ │ ├── DataDependentRoutingSupport.cs
│ │ ├── ElasticScaleStarterKit.csproj
│ │ ├── InitializeShard.sql
│ │ ├── LayerB.cs
│ │ ├── LayerD.cs
│ │ ├── MultiShardQuerySupport.cs
│ │ ├── Program.cs
│ │ ├── Properties
│ │ └── AssemblyInfo.cs
│ │ ├── ShardManagementUtils.cs
│ │ ├── Sql
│ │ ├── CustomersDeleteDDR.sql
│ │ ├── CustomersSelectDDR.sql
│ │ └── Customers_Orders_DDRInsert.sql
│ │ ├── SqlDatabaseUtils.cs
│ │ ├── TableFormatter.cs
│ │ ├── TestParameterValue.cs
│ │ ├── TestReturnValue.cs
│ │ ├── app.config
│ │ └── packages.config
│ └── README.md
├── LICENSE
└── LICENSE.txt
├── Nunit
└── Public.Test
│ ├── .nuget
│ └── packages.config
│ ├── Properties
│ └── AssemblyInfo.cs
│ ├── Public.Test.csproj
│ ├── Public.Test.nunit
│ ├── Public.Test.sln
│ ├── TestCode
│ └── GetKeyedHashTest.cs
│ ├── TestTarget
│ ├── CustomEncode.cs
│ └── GetKeyedHash.cs
│ ├── bat
│ ├── runopencover.bat
│ └── runtests.bat
│ └── packages.config
├── Other
├── 0_Please run with a double-click to build bat file here.txt
├── 1_DeleteDir.bat
├── 2_DeleteFile.bat
├── 3_Build.bat
├── BinarySerialize
│ └── TestBinarySerializeXplat
│ │ ├── BuildAndExec.bat
│ │ ├── BuildAndExec.sh
│ │ ├── Program.cs
│ │ ├── TestBinarySerializeXplatCore20.sln
│ │ ├── TestBinarySerializeXplatCore30.sln
│ │ ├── TestBinarySerializeXplatFx45.sln
│ │ ├── TestBinarySerializeXplatFx46.sln
│ │ ├── TestBinarySerializeXplatFx47.sln
│ │ ├── TestBinarySerializeXplatFx48.sln
│ │ ├── core20
│ │ └── TestBinarySerializeXplat.csproj
│ │ ├── core30
│ │ └── TestBinarySerializeXplat.csproj
│ │ ├── net45
│ │ ├── App.config
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── TestBinarySerializeXplat.csproj
│ │ ├── net46
│ │ ├── App.config
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── TestBinarySerializeXplat.csproj
│ │ ├── net47
│ │ ├── App.config
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── TestBinarySerializeXplat.csproj
│ │ ├── net48
│ │ ├── App.config
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── TestBinarySerializeXplat.csproj
│ │ └── z_Common.bat
├── DotNETBridge
│ ├── BridgeDLL
│ │ ├── BridgeDLL.cpp
│ │ ├── BridgeDLL.sln
│ │ ├── BridgeDLL.vcproj
│ │ ├── ReadMe.txt
│ │ ├── dllmain.cpp
│ │ ├── stdafx.cpp
│ │ ├── stdafx.h
│ │ └── targetver.h
│ ├── CallerEXE
│ │ ├── CallerEXE.cpp
│ │ ├── CallerEXE.sln
│ │ ├── CallerEXE.vcproj
│ │ ├── ReadMe.txt
│ │ ├── stdafx.cpp
│ │ ├── stdafx.h
│ │ └── targetver.h
│ ├── CallerEXE2
│ │ ├── CallerEXE2.csproj
│ │ ├── CallerEXE2.sln
│ │ ├── Program.cs
│ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ ├── README.md
│ └── TargetAssembly
│ │ ├── Properties
│ │ └── AssemblyInfo.cs
│ │ ├── TargetAssembly.csproj
│ │ ├── TargetAssembly.sln
│ │ └── TargetClass.cs
├── Encryption
│ ├── TestECDsaXplat
│ │ ├── TestECDsaXplat.sln
│ │ ├── TestECDsaXplat
│ │ │ ├── App.config
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── TestECDsaXplat.csproj
│ │ │ └── TestECDsaXplatCore.csproj
│ │ └── TestECDsaXplatCore.sln
│ ├── TestEncAndDecProvider
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── TestEncAndDecProvider.csproj
│ │ ├── TestEncAndDecProvider.sln
│ │ ├── app.config
│ │ └── packages.config
│ └── jose_jwt_Sample
│ │ ├── jose_jwt_Sample.sln
│ │ └── jose_jwt_Sample
│ │ ├── Program.cs
│ │ ├── copy_cert.bat
│ │ ├── jose_jwt_Sample.csproj
│ │ └── test.bat
├── InterProcComm
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── CmnClass.cs
│ ├── InterProcComm.csproj
│ ├── InterProcComm.sln
│ ├── NdPipe.xaml
│ ├── NdPipe.xaml.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── README.md
│ ├── SharedMem.xaml
│ ├── SharedMem.xaml.cs
│ ├── SharedMem2.xaml
│ ├── SharedMem2.xaml.cs
│ ├── SharedMemCStrct.xaml
│ ├── SharedMemCStrct.xaml.cs
│ ├── SharedMemCStrct2.xaml
│ ├── SharedMemCStrct2.xaml.cs
│ ├── TCP.xaml
│ ├── TCP.xaml.cs
│ ├── UDP.xaml
│ ├── UDP.xaml.cs
│ ├── Util
│ │ ├── CmnWin32.cs
│ │ ├── CustomMarshaler.cs
│ │ ├── MMapFileWin32.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── SharedMemory.cs
│ │ ├── Util.csproj
│ │ └── WindowsAPIErrorException.cs
│ ├── Window1.xaml
│ └── Window1.xaml.cs
├── InteropWithUnmanage
│ ├── DNET
│ │ ├── DNET_COM
│ │ │ ├── ClassTest.cs
│ │ │ ├── DNET_COM.csproj
│ │ │ ├── DNET_COM.sln
│ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ └── DNET_Client
│ │ │ ├── A.cs
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── DNET_Client.csproj
│ │ │ ├── DNET_Client.sln
│ │ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ │ ├── Window1.xaml
│ │ │ └── Window1.xaml.cs
│ ├── README.md
│ ├── Script
│ │ ├── JS_Client.htm
│ │ ├── JS_Client2.htm
│ │ └── VBS_Client.vbs
│ ├── VB
│ │ ├── IObjSafety
│ │ │ ├── DemoCtl.ctl
│ │ │ ├── IObjSafety.exp
│ │ │ ├── IObjSafety.html
│ │ │ ├── IObjSafety.lib
│ │ │ ├── IObjSafety.ocx
│ │ │ ├── IObjSafety.vbp
│ │ │ ├── IObjSafety.vbw
│ │ │ ├── MKTYPLIB.EXE
│ │ │ ├── Objsafe.odl
│ │ │ ├── basSafeCtl.bas
│ │ │ └── readme.txt
│ │ ├── VB_COM
│ │ │ ├── ClassTest.cls
│ │ │ ├── VB_COM.dll
│ │ │ ├── VB_COM.exp
│ │ │ ├── VB_COM.lib
│ │ │ ├── VB_COM.vbp
│ │ │ └── VB_COM.vbw
│ │ └── VB_Client
│ │ │ ├── Form1.frm
│ │ │ ├── VB_Client.exe
│ │ │ ├── VB_Client.vbp
│ │ │ ├── VB_Client.vbw
│ │ │ └── VC_DLL.dll
│ └── VC
│ │ ├── VC_COM
│ │ ├── ClassTest.cpp
│ │ ├── ClassTest.h
│ │ ├── ClassTest.rgs
│ │ ├── ReadMe.txt
│ │ ├── VC_COM.cpp
│ │ ├── VC_COM.def
│ │ ├── VC_COM.idl
│ │ ├── VC_COM.rc
│ │ ├── VC_COM.rgs
│ │ ├── VC_COM.sln
│ │ ├── VC_COM.vcproj
│ │ ├── VC_COMPS.vcproj
│ │ ├── VC_COMps.def
│ │ ├── dllmain.cpp
│ │ ├── dllmain.h
│ │ ├── resource.h
│ │ ├── stdafx.cpp
│ │ ├── stdafx.h
│ │ └── targetver.h
│ │ ├── VC_Client
│ │ ├── VC_Client1
│ │ │ ├── ReadMe.txt
│ │ │ ├── VC_Client1.cpp
│ │ │ ├── VC_Client1.sln
│ │ │ ├── VC_Client1.vcproj
│ │ │ ├── stdafx.cpp
│ │ │ ├── stdafx.h
│ │ │ └── targetver.h
│ │ ├── VC_Client2
│ │ │ ├── ReadMe.txt
│ │ │ ├── VC_Client2.cpp
│ │ │ ├── VC_Client2.sln
│ │ │ ├── VC_Client2.vcproj
│ │ │ ├── stdafx.cpp
│ │ │ ├── stdafx.h
│ │ │ └── targetver.h
│ │ └── VC_Client3
│ │ │ ├── ReadMe.txt
│ │ │ ├── VC_Client3.cpp
│ │ │ ├── VC_Client3.sln
│ │ │ ├── VC_Client3.vcproj
│ │ │ ├── stdafx.cpp
│ │ │ ├── stdafx.h
│ │ │ └── targetver.h
│ │ └── VC_DLL
│ │ ├── Exports.def
│ │ ├── MYLIBAPI.cpp
│ │ ├── MYLIBAPI.h
│ │ ├── ReadMe.txt
│ │ ├── Simple.cpp
│ │ ├── VC_DLL.sln
│ │ ├── VC_DLL.vcproj
│ │ ├── dllmain.cpp
│ │ ├── stdafx.cpp
│ │ ├── stdafx.h
│ │ └── targetver.h
├── PipesFamilyHouse
│ ├── AnonymousPipe
│ │ ├── Both.sln
│ │ ├── Child
│ │ │ ├── Child.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ └── Parent
│ │ │ ├── Parent.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ ├── README.md
│ └── StdIOAndPipe
│ │ ├── Both.sln
│ │ ├── Child
│ │ ├── Child.csproj
│ │ ├── Program.cs
│ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── Parent
│ │ ├── Parent.csproj
│ │ ├── Program.cs
│ │ └── Properties
│ │ └── AssemblyInfo.cs
├── ThreadSafe
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── README.md
│ ├── TestClass.cs
│ ├── ThreadSafe.csproj
│ ├── ThreadSafe.sln
│ └── exec.bat
├── VC_Samples
│ └── VC_AutoWrap
│ │ ├── README.md
│ │ ├── VC_AutoWrap.cpp
│ │ ├── VC_AutoWrap.sln
│ │ ├── VC_AutoWrap.vcproj
│ │ ├── stdafx.cpp
│ │ ├── stdafx.h
│ │ └── targetver.h
├── z_Common.bat
└── z_Common2.bat
├── PkgMgr
├── NuGet
│ ├── ConsoleApp1
│ │ ├── ConsoleApp1
│ │ │ ├── App.config
│ │ │ ├── ConsoleApp1_net46.csproj
│ │ │ ├── ConsoleApp1_net47.csproj
│ │ │ ├── ConsoleApp1_netstd2.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── packages.config
│ │ ├── ConsoleApp1_net46.sln
│ │ ├── ConsoleApp1_net47.sln
│ │ └── ConsoleApp1_netstd2.sln
│ ├── README.md
│ ├── TestClassLibrary1
│ │ ├── 1_DeleteDir.bat
│ │ ├── 2_DeleteFile.bat
│ │ ├── 3_Build_ClassLibrary.bat
│ │ ├── 4_NuGetPack.bat
│ │ ├── PrimaryPackage.nuspec
│ │ ├── SymbolPackage.nuspec
│ │ ├── TestClassLibrary1
│ │ │ ├── Class1.cs
│ │ │ ├── Class2.cs
│ │ │ ├── Class3.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── TestClassLibrary1_net46.csproj
│ │ │ ├── TestClassLibrary1_net47.csproj
│ │ │ ├── TestClassLibrary1_netstd2.csproj
│ │ │ ├── packages.config
│ │ │ ├── packages_net46.config
│ │ │ └── packages_net47.config
│ │ ├── TestClassLibrary1_net46.sln
│ │ ├── TestClassLibrary1_net47.sln
│ │ ├── TestClassLibrary1_netstd2.sln
│ │ ├── _OpenTouryo.png
│ │ ├── pkg
│ │ │ ├── Primary
│ │ │ │ └── NuGetPush.bat
│ │ │ └── Symbol
│ │ │ │ └── NuGetPush.bat
│ │ ├── z_Common.bat
│ │ └── z_Common2.bat
│ └── nuget.exe
├── README.md
└── npm
│ ├── README.md
│ ├── ossc
│ ├── README.md
│ ├── browser-app1
│ │ ├── README.md
│ │ ├── index.html
│ │ ├── main.js
│ │ ├── npm_i.bat
│ │ ├── package-lock.json
│ │ ├── package.json
│ │ └── webpack_bundle.bat
│ ├── console-app1
│ │ ├── README.md
│ │ ├── node_test.bat
│ │ ├── npm_i.bat
│ │ ├── package-lock.json
│ │ ├── package.json
│ │ └── test.js
│ └── ossc-test-library1
│ │ ├── README.md
│ │ ├── index.js
│ │ ├── node_test.bat
│ │ ├── npm_i.bat
│ │ ├── package-lock.json
│ │ ├── package.json
│ │ └── test.js
│ └── touryo
│ ├── README.md
│ ├── browser-app1
│ ├── README.md
│ ├── index.html
│ ├── main.js
│ ├── npm_i.bat
│ ├── package.json
│ └── webpack_bundle.bat
│ ├── console-app1
│ ├── README.md
│ ├── node_test.bat
│ ├── npm_i.bat
│ ├── package.json
│ └── test.js
│ └── touryo-test-library1
│ ├── README.md
│ ├── index.js
│ ├── node_test.bat
│ ├── npm_i.bat
│ ├── package-lock.json
│ ├── package.json
│ └── test.js
├── README.md
├── Template
├── MobileTemplate
│ ├── CordovaTemplate
│ │ ├── .gitignore
│ │ ├── bower.json
│ │ ├── build.json
│ │ ├── config.xml
│ │ ├── merges
│ │ │ └── android
│ │ │ │ └── scripts
│ │ │ │ ├── android2.3-jscompat.js
│ │ │ │ └── platformOverrides.js
│ │ ├── package.json
│ │ ├── res
│ │ │ ├── icons
│ │ │ │ ├── android
│ │ │ │ │ ├── icon-36-ldpi.png
│ │ │ │ │ ├── icon-48-mdpi.png
│ │ │ │ │ ├── icon-72-hdpi.png
│ │ │ │ │ └── icon-96-xhdpi.png
│ │ │ │ └── ios
│ │ │ │ │ ├── icon-40-2x.png
│ │ │ │ │ ├── icon-40.png
│ │ │ │ │ ├── icon-50-2x.png
│ │ │ │ │ ├── icon-50.png
│ │ │ │ │ ├── icon-57-2x.png
│ │ │ │ │ ├── icon-57.png
│ │ │ │ │ ├── icon-60-2x.png
│ │ │ │ │ ├── icon-60-3x.png
│ │ │ │ │ ├── icon-60.png
│ │ │ │ │ ├── icon-72-2x.png
│ │ │ │ │ ├── icon-72.png
│ │ │ │ │ ├── icon-76-2x.png
│ │ │ │ │ ├── icon-76.png
│ │ │ │ │ ├── icon-small-2x.png
│ │ │ │ │ └── icon-small.png
│ │ │ ├── native
│ │ │ │ └── android
│ │ │ │ │ └── ant.properties
│ │ │ └── screens
│ │ │ │ ├── android
│ │ │ │ ├── screen-hdpi-landscape.png
│ │ │ │ ├── screen-hdpi-portrait.png
│ │ │ │ ├── screen-ldpi-landscape.png
│ │ │ │ ├── screen-ldpi-portrait.png
│ │ │ │ ├── screen-mdpi-landscape.png
│ │ │ │ ├── screen-mdpi-portrait.png
│ │ │ │ ├── screen-xhdpi-landscape.png
│ │ │ │ └── screen-xhdpi-portrait.png
│ │ │ │ └── ios
│ │ │ │ ├── screen-ipad-landscape-2x.png
│ │ │ │ ├── screen-ipad-landscape.png
│ │ │ │ ├── screen-ipad-portrait-2x.png
│ │ │ │ ├── screen-ipad-portrait.png
│ │ │ │ ├── screen-iphone-568h-2x.png
│ │ │ │ ├── screen-iphone-landscape-736h.png
│ │ │ │ ├── screen-iphone-portrait-2x.png
│ │ │ │ ├── screen-iphone-portrait-667h.png
│ │ │ │ ├── screen-iphone-portrait-736h.png
│ │ │ │ └── screen-iphone-portrait.png
│ │ └── www
│ │ │ ├── css
│ │ │ └── index.css
│ │ │ ├── images
│ │ │ └── cordova.png
│ │ │ ├── index.html
│ │ │ └── scripts
│ │ │ ├── index.js
│ │ │ ├── jquery-3.2.1.min.js
│ │ │ └── platformOverrides.js
│ └── flutter_template
│ │ ├── .gitignore
│ │ ├── .metadata
│ │ ├── README.md
│ │ ├── android
│ │ ├── .gitignore
│ │ ├── app
│ │ │ ├── build.gradle
│ │ │ ├── google-services.json
│ │ │ └── src
│ │ │ │ ├── debug
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ └── res
│ │ │ │ │ └── xml
│ │ │ │ │ └── network_security_config.xml
│ │ │ │ ├── main
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── kotlin
│ │ │ │ │ └── com
│ │ │ │ │ │ └── opentouryo
│ │ │ │ │ │ └── flutter_template
│ │ │ │ │ │ ├── Application.kt
│ │ │ │ │ │ └── MainActivity.kt
│ │ │ │ └── res
│ │ │ │ │ ├── drawable-v21
│ │ │ │ │ └── launch_background.xml
│ │ │ │ │ ├── drawable
│ │ │ │ │ ├── launch_background.xml
│ │ │ │ │ └── notification_icon.png
│ │ │ │ │ ├── mipmap-hdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── mipmap-mdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── mipmap-xhdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── mipmap-xxhdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── mipmap-xxxhdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── values-night
│ │ │ │ │ └── styles.xml
│ │ │ │ │ ├── values
│ │ │ │ │ ├── colors.xml
│ │ │ │ │ └── styles.xml
│ │ │ │ │ └── xml
│ │ │ │ │ └── network_security_config.xml
│ │ │ │ └── profile
│ │ │ │ └── AndroidManifest.xml
│ │ ├── build.gradle
│ │ ├── gradle.properties
│ │ ├── gradle
│ │ │ └── wrapper
│ │ │ │ └── gradle-wrapper.properties
│ │ ├── settings.gradle
│ │ └── settings_aar.gradle
│ │ ├── ios
│ │ ├── .gitignore
│ │ ├── Flutter
│ │ │ ├── AppFrameworkInfo.plist
│ │ │ ├── Debug.xcconfig
│ │ │ └── Release.xcconfig
│ │ ├── Runner.xcodeproj
│ │ │ ├── project.pbxproj
│ │ │ ├── project.xcworkspace
│ │ │ │ ├── contents.xcworkspacedata
│ │ │ │ └── xcshareddata
│ │ │ │ │ ├── IDEWorkspaceChecks.plist
│ │ │ │ │ └── WorkspaceSettings.xcsettings
│ │ │ └── xcshareddata
│ │ │ │ └── xcschemes
│ │ │ │ └── Runner.xcscheme
│ │ ├── Runner.xcworkspace
│ │ │ ├── contents.xcworkspacedata
│ │ │ └── xcshareddata
│ │ │ │ ├── IDEWorkspaceChecks.plist
│ │ │ │ └── WorkspaceSettings.xcsettings
│ │ └── Runner
│ │ │ ├── AppDelegate.swift
│ │ │ ├── Assets.xcassets
│ │ │ ├── AppIcon.appiconset
│ │ │ │ ├── Contents.json
│ │ │ │ ├── Icon-App-1024x1024@1x.png
│ │ │ │ ├── Icon-App-20x20@1x.png
│ │ │ │ ├── Icon-App-20x20@2x.png
│ │ │ │ ├── Icon-App-20x20@3x.png
│ │ │ │ ├── Icon-App-29x29@1x.png
│ │ │ │ ├── Icon-App-29x29@2x.png
│ │ │ │ ├── Icon-App-29x29@3x.png
│ │ │ │ ├── Icon-App-40x40@1x.png
│ │ │ │ ├── Icon-App-40x40@2x.png
│ │ │ │ ├── Icon-App-40x40@3x.png
│ │ │ │ ├── Icon-App-60x60@2x.png
│ │ │ │ ├── Icon-App-60x60@3x.png
│ │ │ │ ├── Icon-App-76x76@1x.png
│ │ │ │ ├── Icon-App-76x76@2x.png
│ │ │ │ └── Icon-App-83.5x83.5@2x.png
│ │ │ └── LaunchImage.imageset
│ │ │ │ ├── Contents.json
│ │ │ │ ├── LaunchImage.png
│ │ │ │ ├── LaunchImage@2x.png
│ │ │ │ ├── LaunchImage@3x.png
│ │ │ │ └── README.md
│ │ │ ├── Base.lproj
│ │ │ ├── LaunchScreen.storyboard
│ │ │ └── Main.storyboard
│ │ │ ├── Info.plist
│ │ │ └── Runner-Bridging-Header.h
│ │ ├── lib
│ │ ├── generated_plugin_registrant.dart
│ │ ├── main.dart
│ │ ├── message.dart
│ │ ├── message_list.dart
│ │ ├── meta_card.dart
│ │ ├── permissions.dart
│ │ └── token_monitor.dart
│ │ ├── pubspec.lock
│ │ ├── pubspec.yaml
│ │ ├── test
│ │ └── widget_test.dart
│ │ └── web
│ │ ├── favicon.png
│ │ ├── icons
│ │ ├── Icon-192.png
│ │ └── Icon-512.png
│ │ ├── index.html
│ │ └── manifest.json
└── SPATemplate
│ ├── react-redux-todo
│ ├── .gitignore
│ ├── README.md
│ ├── npm_i.bat
│ ├── npm_start.bat
│ ├── package-lock.json
│ ├── package.json
│ ├── public
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ └── manifest.json
│ └── src
│ │ ├── App.css
│ │ ├── App.js
│ │ ├── App.test.js
│ │ ├── actions
│ │ └── Todo.js
│ │ ├── components
│ │ └── Todo.js
│ │ ├── containers
│ │ └── Todo.js
│ │ ├── createStore.js
│ │ ├── index.css
│ │ ├── index.js
│ │ ├── logo.svg
│ │ ├── reducers
│ │ └── Todo.js
│ │ └── registerServiceWorker.js
│ ├── react_app
│ ├── .gitignore
│ ├── README.md
│ ├── npm_i.bat
│ ├── npm_start.bat
│ ├── package-lock.json
│ ├── package.json
│ ├── public
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ └── manifest.json
│ └── src
│ │ ├── App.css
│ │ ├── App.js
│ │ ├── App.test.js
│ │ ├── Menu1.js
│ │ ├── Menu2.js
│ │ ├── index.css
│ │ ├── index.js
│ │ ├── logo.svg
│ │ └── registerServiceWorker.js
│ └── redux_app
│ ├── .gitignore
│ ├── README.md
│ ├── npm_i.bat
│ ├── npm_start.bat
│ ├── package-lock.json
│ ├── package.json
│ ├── public
│ ├── favicon.ico
│ ├── index.html
│ └── manifest.json
│ └── src
│ ├── App.css
│ ├── App.js
│ ├── App.test.js
│ ├── actions
│ ├── Menu1.js
│ ├── Menu12.js
│ └── Menu2.js
│ ├── components
│ ├── Hoge.js
│ ├── Menu1.js
│ └── Menu2.js
│ ├── containers
│ ├── Menu1.js
│ ├── Menu12.js
│ └── Menu2.js
│ ├── createStore.js
│ ├── index.css
│ ├── index.js
│ ├── logo.svg
│ ├── reducers
│ ├── Menu12Reducer.js
│ ├── Menu1Reducer.js
│ └── Menu2Reducer.js
│ └── registerServiceWorker.js
├── UISubsystem
└── WPF
│ ├── 0_Please run with a double-click to build bat file here.txt
│ ├── 1_DeleteDir.bat
│ ├── 2_DeleteFile.bat
│ ├── 3_Build.bat
│ ├── Animation
│ ├── Menu
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── Menu.csproj
│ │ ├── Menu.sln
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Window1.xaml
│ │ ├── Window1.xaml.cs
│ │ ├── Window2.xaml
│ │ └── Window2.xaml.cs
│ └── TimelineAndFrame
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── FrameBaseAnimationWindow.xaml
│ │ ├── FrameBaseAnimationWindow.xaml.cs
│ │ ├── KeyFrameAnimationWindow.xaml
│ │ ├── KeyFrameAnimationWindow.xaml.cs
│ │ ├── LayoutTransformOnlyWindow.xaml
│ │ ├── LayoutTransformOnlyWindow.xaml.cs
│ │ ├── MainWindow.xaml
│ │ ├── MainWindow.xaml.cs
│ │ ├── PathAnimationWindow.xaml
│ │ ├── PathAnimationWindow.xaml.cs
│ │ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ │ ├── RenderTransformAnimationWindow.xaml
│ │ ├── RenderTransformAnimationWindow.xaml.cs
│ │ ├── RenderTransformOnlyWindow.xaml
│ │ ├── RenderTransformOnlyWindow.xaml.cs
│ │ ├── TimelineAndFrame.csproj
│ │ ├── TimelineAndFrame.sln
│ │ ├── TimelineAnimationWindow1.xaml
│ │ ├── TimelineAnimationWindow1.xaml.cs
│ │ ├── TimelineAnimationWindow2.xaml
│ │ ├── TimelineAnimationWindow2.xaml.cs
│ │ ├── TransformGroupAnimationWindow.xaml
│ │ └── TransformGroupAnimationWindow.xaml.cs
│ ├── Cbx in DataGrid
│ ├── DataGrid
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── DataGrid.csproj
│ │ ├── DataGrid.sln
│ │ ├── GpCbx.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Window1.xaml
│ │ ├── Window1.xaml.cs
│ │ └── app.config
│ └── GridView
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── GpCbx.cs
│ │ ├── GridView.csproj
│ │ ├── GridView.sln
│ │ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ │ ├── Window1.xaml
│ │ └── Window1.xaml.cs
│ ├── DataBinding
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── BmiLevelConverter.cs
│ ├── CalcBMIWindow.xaml
│ ├── CalcBMIWindow.xaml.cs
│ ├── DataBinding.csproj
│ ├── DataBinding.sln
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── Person.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── SliderWindow.xaml
│ ├── SliderWindow.xaml.cs
│ └── ValConverter.cs
│ ├── InputSupport
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── InputSupport.csproj
│ ├── InputSupport.sln
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── README.md
│ ├── Template
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── ContentControlWindow.xaml
│ ├── ContentControlWindow.xaml.cs
│ ├── GridViewWindow.xaml
│ ├── GridViewWindow.xaml.cs
│ ├── ItemsControlWindow.xaml
│ ├── ItemsControlWindow.xaml.cs
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Template.csproj
│ ├── Template.sln
│ └── jpg
│ │ ├── Blue hills.jpg
│ │ ├── Sunset.jpg
│ │ ├── Water lilies.jpg
│ │ └── Winter.jpg
│ ├── Trigger
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── DataTriggerWindow.xaml
│ ├── DataTriggerWindow.xaml.cs
│ ├── ItemsControlWindow.xaml
│ ├── ItemsControlWindow.xaml.cs
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── Place.cs
│ ├── Places.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── PropertyTriggerWindow.xaml
│ ├── PropertyTriggerWindow.xaml.cs
│ ├── Trigger.csproj
│ ├── Trigger.sln
│ └── jpg
│ │ ├── Blue hills.jpg
│ │ ├── Sunset.jpg
│ │ ├── Water lilies.jpg
│ │ └── Winter.jpg
│ ├── Validation
│ ├── DataGrid
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── DataGrid.csproj
│ │ ├── DataGrid.sln
│ │ ├── ErrorBrush.cs
│ │ ├── MainWindow.xaml
│ │ ├── MainWindow.xaml.cs
│ │ ├── MyValidationRule.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── RowValidationErrorTemplateWindow.xaml
│ │ ├── RowValidationErrorTemplateWindow.xaml.cs
│ │ ├── SourceClass.cs
│ │ ├── TextBoxDataGridValidationBgWindow1.xaml
│ │ ├── TextBoxDataGridValidationBgWindow1.xaml.cs
│ │ ├── TextBoxDataGridValidationBgWindow2.xaml
│ │ ├── TextBoxDataGridValidationBgWindow2.xaml.cs
│ │ └── ValidationRuleNothing.cs
│ └── InputField
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── DataErrorValidationRuleWindow.xaml
│ │ ├── DataErrorValidationRuleWindow.xaml.cs
│ │ ├── ExceptionValidationRuleWindow.xaml
│ │ ├── ExceptionValidationRuleWindow.xaml.cs
│ │ ├── InputField.csproj
│ │ ├── InputField.sln
│ │ ├── LengthValidationRule.cs
│ │ ├── LengthValidationRuleBgWindow.xaml
│ │ ├── LengthValidationRuleBgWindow.xaml.cs
│ │ ├── LengthValidationRuleWindow.xaml
│ │ ├── LengthValidationRuleWindow.xaml.cs
│ │ ├── MainWindow.xaml
│ │ ├── MainWindow.xaml.cs
│ │ ├── MaxLengthWindow.xaml
│ │ ├── MaxLengthWindow.xaml.cs
│ │ ├── MyValidationRule.cs
│ │ ├── MyValidationRuleBgWindow.xaml
│ │ ├── MyValidationRuleBgWindow.xaml.cs
│ │ ├── MyValidationRuleWindow.xaml
│ │ ├── MyValidationRuleWindow.xaml.cs
│ │ ├── NumericValidationRule.cs
│ │ ├── NumericValidationRuleBgWindow.xaml
│ │ ├── NumericValidationRuleBgWindow.xaml.cs
│ │ ├── NumericValidationRuleWindow.xaml
│ │ ├── NumericValidationRuleWindow.xaml.cs
│ │ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ │ ├── SourceClass.cs
│ │ ├── SourceClassWithValid.cs
│ │ └── ValidationRuleNothing.cs
│ ├── z_Common.bat
│ └── z_Common2.bat
└── nuget.exe
/2_DeleteFile.bat:
--------------------------------------------------------------------------------
1 | @echo off
2 |
3 | SET EXTENTION=*.suo *.user *.tmp *.log *.bak *.skrold
4 |
5 | @echo --------------------------------------------------
6 | @echo Delete the %EXTENTION%.
7 | @echo --------------------------------------------------
8 |
9 | del /f /s /a- %EXTENTION%
10 |
11 | @echo --------------------------------------------------
12 | @echo Deleted the %EXTENTION%.
13 | @echo --------------------------------------------------
14 |
15 | pause
16 |
--------------------------------------------------------------------------------
/ASPNET/AuthN_AuthZ/ID-Federation/ClaimsWeb_sample/Web.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/ASPNET/AuthN_AuthZ/ID-Federation/README.md:
--------------------------------------------------------------------------------
1 | ### [ID-Federation](https://github.com/OpenTouryoProject/SampleProgram/tree/master/ASPNET/ID-Federation)
2 | 認証連携(IDフェデレーション)のサンプル
3 |
4 | ##### [ClaimsWeb_sample](https://github.com/OpenTouryoProject/SampleProgram/tree/master/ASPNET/ID-Federation/ClaimsWeb_sample)
5 | WIFのFedUtilを使用した認証連携(IDフェデレーション)のサンプル
6 | ADFSなどのSTSを構築した後に、WIFのFedUtilを使用してRP(自分)とSTSとの間で信頼を確立する。
7 |
8 | - WIF - マイクロソフト系技術情報 Wiki
9 | FedUtil
10 | http://techinfoofmicrosofttech.osscons.jp/index.php?WIF#x7272b98
11 |
--------------------------------------------------------------------------------
/ASPNET/AuthN_AuthZ/OpenID_Connect/OpenIDConnect_sample/.nuget/NuGet.Config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/ASPNET/AuthN_AuthZ/OpenID_Connect/OpenIDConnect_sample/OpenIDConnect_sample/Default.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="OpenIDConnect_sample.Default" %>
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/ASPNET/AuthN_AuthZ/OpenID_Connect/OpenIDConnect_sample/OpenIDConnect_sample/Error.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Error.aspx.cs" Inherits="OpenIDConnect_sample.Error" %>
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/ASPNET/AuthN_AuthZ/OpenID_Connect/OpenIDConnect_sample/OpenIDConnect_sample/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="OpenIDConnect_sample.Global" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/ASPNET/AuthN_AuthZ/OpenID_Connect/OpenIDConnect_sample/OpenIDConnect_sample/app.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/ASPNET/AuthN_AuthZ/OpenID_Connect/OpenIDConnect_sample/OpenIDConnect_sample/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/ASPNET/AuthN_AuthZ/OpenID_Connect/README.md:
--------------------------------------------------------------------------------
1 | ### [OpenIDConnect_sample](https://github.com/OpenTouryoProject/SampleProgram/tree/master/ASPNET/OpenID_Connect/OpenIDConnect_sample/)
2 | OpenIDConnectのサンプル
3 |
4 | ##### [OpenIDConnect_sample](https://github.com/OpenTouryoProject/SampleProgram/tree/master/ASPNET/OpenID_Connect/OpenIDConnect_sample/OpenIDConnect_sample)
5 | Microsoft.Owin.Securityを使用して、OpenID Connectの認証を行うサンプル。
6 |
7 | - OpenID Connect - マイクロソフト系技術情報 Wiki
8 | サンプルを実行する方法
9 | http://techinfoofmicrosofttech.osscons.jp/index.php?OpenID%20Connect#l2d6ff73
10 |
--------------------------------------------------------------------------------
/ASPNET/MSTranslatorAPI/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="MicrosoftTranslator.Global" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/ASPNET/MSTranslatorAPI/Site.Master.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Web;
5 | using System.Web.UI;
6 | using System.Web.UI.WebControls;
7 |
8 | namespace MicrosoftTranslator
9 | {
10 | public partial class SiteMaster : System.Web.UI.MasterPage
11 | {
12 | protected void Page_Load(object sender, EventArgs e)
13 | {
14 |
15 | }
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/ASPNET/SignalR/.nuget/NuGet.Config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/ASPNET/SignalR/.nuget/NuGet.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/ASPNET/SignalR/.nuget/NuGet.exe
--------------------------------------------------------------------------------
/ASPNET/SignalR/SignalRChat/README.md:
--------------------------------------------------------------------------------
1 | Chat application that was developed in technology research.
--------------------------------------------------------------------------------
/ASPNET/WebForm/Mobile/ResponseFilter/Default.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
2 |
3 |
4 |
5 |
6 |
7 | 無題のページ
8 |
9 |
10 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/ASPNET/WebForm/Mobile/VwS_HdnToSsn/ProcessingMode1/Default1.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Default1.aspx.cs" Inherits="Default1" Title="Untitled Page" %>
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/ASPNET/WebForm/Mobile/VwS_HdnToSsn/ProcessingMode1/Default2.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" Title="Untitled Page" %>
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/ASPNET/WebForm/Mobile/VwS_HdnToSsn/ProcessingMode1/Default3.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Default3.aspx.cs" Inherits="Default3" Title="Untitled Page" %>
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/ASPNET/WebForm/Mobile/VwS_HdnToSsn/ProcessingMode1/MasterPage.master:
--------------------------------------------------------------------------------
1 | <%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %>
2 |
3 |
4 |
5 |
6 |
7 | 無題のページ
8 |
9 |
10 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/ASPNET/WebForm/Mobile/VwS_HdnToSsn/ProcessingMode2/App_Browsers/BrowserFile.browser:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/ASPNET/WebForm/Mobile/VwS_HdnToSsn/ProcessingMode2/Default1.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default1.aspx.cs" Inherits="Default1" Title="Untitled Page" %>
2 |
3 |
4 |
5 |
6 |
7 | 無題のページ
8 |
9 |
10 |
19 |
20 |
--------------------------------------------------------------------------------
/ASPNET/WebForm/Mobile/VwS_HdnToSsn/ProcessingMode2/Default2.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" Title="Untitled Page" %>
2 |
3 |
4 |
5 |
6 |
7 | 無題のページ
8 |
9 |
10 |
19 |
20 |
--------------------------------------------------------------------------------
/ASPNET/WebForm/Mobile/VwS_HdnToSsn/ProcessingMode2/Default3.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default3.aspx.cs" Inherits="Default3" Title="Untitled Page" %>
2 |
3 |
4 |
5 |
6 |
7 | 無題のページ
8 |
9 |
10 |
19 |
20 |
--------------------------------------------------------------------------------
/ASPNET/WebForm/jqGridandWCF/jqGridandWCF.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 2012
4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "jqGridandWCF", "jqGridandWCF\jqGridandWCF.csproj", "{AA384727-4EAA-466E-B2EE-3E27CF2A8515}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|Any CPU = Debug|Any CPU
9 | Release|Any CPU = Release|Any CPU
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {AA384727-4EAA-466E-B2EE-3E27CF2A8515}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13 | {AA384727-4EAA-466E-B2EE-3E27CF2A8515}.Debug|Any CPU.Build.0 = Debug|Any CPU
14 | {AA384727-4EAA-466E-B2EE-3E27CF2A8515}.Release|Any CPU.ActiveCfg = Release|Any CPU
15 | {AA384727-4EAA-466E-B2EE-3E27CF2A8515}.Release|Any CPU.Build.0 = Release|Any CPU
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/all.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI CSS Framework 1.11.2
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2014 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://api.jqueryui.com/category/theming/
10 | */
11 | @import "base.css";
12 | @import "theme.css";
13 |
--------------------------------------------------------------------------------
/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/autocomplete.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Autocomplete 1.11.2
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2014 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://api.jqueryui.com/autocomplete/#theming
10 | */
11 | .ui-autocomplete {
12 | position: absolute;
13 | top: 0;
14 | left: 0;
15 | cursor: default;
16 | }
17 |
--------------------------------------------------------------------------------
/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/base.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI CSS Framework 1.11.2
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2014 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://api.jqueryui.com/category/theming/
10 | */
11 | @import url("core.css");
12 |
13 | @import url("accordion.css");
14 | @import url("autocomplete.css");
15 | @import url("button.css");
16 | @import url("datepicker.css");
17 | @import url("dialog.css");
18 | @import url("draggable.css");
19 | @import url("menu.css");
20 | @import url("progressbar.css");
21 | @import url("resizable.css");
22 | @import url("selectable.css");
23 | @import url("selectmenu.css");
24 | @import url("sortable.css");
25 | @import url("slider.css");
26 | @import url("spinner.css");
27 | @import url("tabs.css");
28 | @import url("tooltip.css");
29 |
--------------------------------------------------------------------------------
/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/draggable.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Draggable 1.11.2
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2014 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | */
9 | .ui-draggable-handle {
10 | -ms-touch-action: none;
11 | touch-action: none;
12 | }
13 |
--------------------------------------------------------------------------------
/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png
--------------------------------------------------------------------------------
/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png
--------------------------------------------------------------------------------
/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png
--------------------------------------------------------------------------------
/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png
--------------------------------------------------------------------------------
/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png
--------------------------------------------------------------------------------
/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png
--------------------------------------------------------------------------------
/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png
--------------------------------------------------------------------------------
/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-icons_2e83ff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-icons_2e83ff_256x240.png
--------------------------------------------------------------------------------
/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-icons_888888_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-icons_888888_256x240.png
--------------------------------------------------------------------------------
/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/selectable.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Selectable 1.11.2
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2014 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | */
9 | .ui-selectable {
10 | -ms-touch-action: none;
11 | touch-action: none;
12 | }
13 | .ui-selectable-helper {
14 | position: absolute;
15 | z-index: 100;
16 | border: 1px dotted black;
17 | }
18 |
--------------------------------------------------------------------------------
/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/sortable.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Sortable 1.11.2
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2014 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | */
9 | .ui-sortable-handle {
10 | -ms-touch-action: none;
11 | touch-action: none;
12 | }
13 |
--------------------------------------------------------------------------------
/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/Content/themes/base/tooltip.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Tooltip 1.11.2
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2014 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://api.jqueryui.com/tooltip/#theming
10 | */
11 | .ui-tooltip {
12 | padding: 8px;
13 | position: absolute;
14 | z-index: 9999;
15 | max-width: 300px;
16 | -webkit-box-shadow: 0 0 5px #aaa;
17 | box-shadow: 0 0 5px #aaa;
18 | }
19 | body .ui-tooltip {
20 | border-width: 2px;
21 | }
22 |
--------------------------------------------------------------------------------
/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/IJSONService.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Runtime.Serialization;
5 | using System.ServiceModel;
6 | using System.ServiceModel.Web;
7 | using System.Text;
8 |
9 | namespace jqGridandWCF
10 | {
11 | // メモ: [リファクター] メニューの [名前の変更] コマンドを使用すると、コードと config ファイルの両方で同時にインターフェイス名 "IJSONService" を変更できます。
12 | [ServiceContract]
13 | public interface IJSONService
14 | {
15 | [OperationContract]
16 | [WebGet(ResponseFormat = WebMessageFormat.Json, UriTemplate = "GetJson")]
17 | JQGridDataClass GetJson();
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/JSONService.svc:
--------------------------------------------------------------------------------
1 | <%@ ServiceHost Language="C#" Debug="true" Service="jqGridandWCF.JSONService" CodeBehind="JSONService.svc.cs" %>
2 |
--------------------------------------------------------------------------------
/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/WebForm1.aspx.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Web;
5 | using System.Web.UI;
6 | using System.Web.UI.WebControls;
7 |
8 | namespace jqGridandWCF
9 | {
10 | public partial class WebForm1 : System.Web.UI.Page
11 | {
12 | protected void Page_Load(object sender, EventArgs e)
13 | {
14 |
15 | }
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/ASPNET/WebForm/jqGridandWCF/jqGridandWCF/WebForm1.aspx.designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | // <自動生成>
3 | // このコードはツールによって生成されました。
4 | //
5 | // このファイルへの変更は、以下の状況下で不正な動作の原因になったり、
6 | // コードが再生成されるときに損失したりします。
7 | // 自動生成>
8 | //------------------------------------------------------------------------------
9 |
10 | namespace jqGridandWCF {
11 |
12 |
13 | public partial class WebForm1 {
14 |
15 | ///
16 | /// form1 コントロール。
17 | ///
18 | ///
19 | /// 自動生成されたフィールド。
20 | /// 変更するには、フィールドの宣言をデザイナー ファイルから分離コード ファイルに移動します。
21 | ///
22 | protected global::System.Web.UI.HtmlControls.HtmlForm form1;
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/Azure/DotNet4ApacheSpark/MLSparkModel/text.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Azure/DotNet4ApacheSpark/MLSparkModel/text.txt
--------------------------------------------------------------------------------
/Azure/DotNet4ApacheSpark/MySparkApp/MySparkApp/MySparkApp.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Exe
5 | netcoreapp3.1
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | Always
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/Azure/DotNet4ApacheSpark/MySparkApp/MySparkApp/input.txt:
--------------------------------------------------------------------------------
1 | Hello World
2 | This .NET app uses .NET for Apache Spark
3 | This .NET app counts words with Apache Spark
--------------------------------------------------------------------------------
/Azure/DotNet4ApacheSpark/mySparkBatchApp/mySparkBatchApp/mySparkBatchApp.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Exe
5 | netcoreapp3.1
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | Always
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/Azure/DotNet4ApacheSpark/mySparkStreamingApp/mySparkStreamingApp/mySparkStreamingApp.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Exe
5 | netcoreapp3.1
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Azure/ElasticDatabase/ElasticDB_Sample/.nuget/NuGet.Config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Azure/ElasticDatabase/ElasticDB_Sample/.nuget/NuGet.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Azure/ElasticDatabase/ElasticDB_Sample/.nuget/NuGet.exe
--------------------------------------------------------------------------------
/Azure/ElasticDatabase/ElasticDB_Sample/ElasticScaleStarterKit/InitializeShard.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Azure/ElasticDatabase/ElasticDB_Sample/ElasticScaleStarterKit/InitializeShard.sql
--------------------------------------------------------------------------------
/Azure/ElasticDatabase/ElasticDB_Sample/ElasticScaleStarterKit/README.txt:
--------------------------------------------------------------------------------
1 |
2 | Prerequisites:
3 | - Visual Studio 2012 or later, Professional Edition or higher
4 | - Nuget 2.7 or later
5 | - .NET Framework 4.5 or later
6 | - Microsoft Azure SQL Database
7 |
8 | Before running this project, please fill in the values in App.config.
9 |
10 | For detailed instructions and background information, please refer to Getting Started web page
11 | for Azure SQL Database Elastic Scale: http://go.microsoft.com/fwlink/?LinkID=510913
12 |
13 |
--------------------------------------------------------------------------------
/Azure/ElasticDatabase/ElasticDB_Sample/ElasticScaleStarterKit/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Azure/ElasticDatabase/ElasticDB_Sample2/ElasticScaleStarterKit/.nuget/NuGet.Config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Azure/ElasticDatabase/ElasticDB_Sample2/ElasticScaleStarterKit/.nuget/NuGet.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Azure/ElasticDatabase/ElasticDB_Sample2/ElasticScaleStarterKit/.nuget/NuGet.exe
--------------------------------------------------------------------------------
/Azure/ElasticDatabase/ElasticDB_Sample2/ElasticScaleStarterKit/ElasticScaleStarterKit/InitializeShard.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Azure/ElasticDatabase/ElasticDB_Sample2/ElasticScaleStarterKit/ElasticScaleStarterKit/InitializeShard.sql
--------------------------------------------------------------------------------
/Azure/ElasticDatabase/ElasticDB_Sample2/ElasticScaleStarterKit/ElasticScaleStarterKit/Sql/CustomersDeleteDDR.sql:
--------------------------------------------------------------------------------
1 | DELETE FROM
2 | Orders
3 | WHERE
4 | customerID = @P1
5 |
6 | DELETE FROM
7 | Customers
8 | WHERE
9 | customerID = @P1
--------------------------------------------------------------------------------
/Azure/ElasticDatabase/ElasticDB_Sample2/ElasticScaleStarterKit/ElasticScaleStarterKit/Sql/CustomersSelectDDR.sql:
--------------------------------------------------------------------------------
1 | SELECT
2 | *
3 | FROM
4 | Customers
5 | WHERE
6 | customerID = @P1
--------------------------------------------------------------------------------
/Azure/ElasticDatabase/ElasticDB_Sample2/ElasticScaleStarterKit/ElasticScaleStarterKit/Sql/Customers_Orders_DDRInsert.sql:
--------------------------------------------------------------------------------
1 | IF EXISTS
2 | (SELECT
3 | 1
4 | FROM
5 | Customers
6 | WHERE
7 | CustomerId = @p1)
8 |
9 | UPDATE
10 | Customers
11 | SET
12 | Name = @p2, RegionId = @p3
13 | WHERE
14 | CustomerId = @p1
15 | ELSE
16 | INSERT INTO
17 | Customers (CustomerId, Name, RegionId)
18 | VALUES
19 | (@p1, @p2, @p3)
20 |
21 | INSERT INTO
22 | Orders (CustomerId,ProductId,OrderDate)
23 | VALUES
24 | (@p4, @p5, @p6)
25 |
26 |
27 |
--------------------------------------------------------------------------------
/Azure/ElasticDatabase/ElasticDB_Sample2/ElasticScaleStarterKit/ElasticScaleStarterKit/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Azure/ElasticDatabase/README.md:
--------------------------------------------------------------------------------
1 | ### [ElasticDB_Sample](https://github.com/OpenTouryoProject/SampleProgram/tree/master/Azure/ElasticDatabase/ElasticDB_Sample)
2 | ElasticDBのサンプル
3 |
4 | ##### [ElasticScaleStarterKit](https://github.com/OpenTouryoProject/SampleProgram/tree/master/Azure/ElasticDatabase/ElasticDB_Sample/ElasticScaleStarterKit)
5 | Elastic Scale, Elastic Database Pool - マイクロソフト系技術情報 Wiki
6 | サンプルを実行する方法
7 | http://techinfoofmicrosofttech.osscons.jp/index.php?Elastic%20Scale%2C%20Elastic%20Database%20Pool#qfbdd1bd
8 |
--------------------------------------------------------------------------------
/Nunit/Public.Test/.nuget/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Nunit/Public.Test/Public.Test.nunit:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Nunit/Public.Test/bat/runopencover.bat:
--------------------------------------------------------------------------------
1 | ..\packages\OpenCover.4.5.2506\OpenCover.Console.exe -target:runtests.bat -register:user -output:Public.xml
2 | ..\packages\ReportGenerator.1.9.1.0\reportgenerator.exe -reports:Public.xml -targetdir:coverage
--------------------------------------------------------------------------------
/Nunit/Public.Test/bat/runtests.bat:
--------------------------------------------------------------------------------
1 | ..\packages\NUnit.Runners.2.6.3\tools\nunit-console.exe ..\bin\Debug\Public.Test.dll
2 | pause
3 |
4 |
--------------------------------------------------------------------------------
/Nunit/Public.Test/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Other/0_Please run with a double-click to build bat file here.txt:
--------------------------------------------------------------------------------
1 | Why not?
2 |
3 | The following files is to delete the folders and files in the current directory.
4 |
5 | - 1_DeleteDir.bat
6 | - 2_DeleteFile.bat
7 |
8 | If you run with a double-click, it is safe this directory becomes the current directory.
9 | Otherwise, it is dangerous there is a possibility to delete folders and files unintended.
--------------------------------------------------------------------------------
/Other/2_DeleteFile.bat:
--------------------------------------------------------------------------------
1 | @echo off
2 |
3 | @echo --------------------------------------------------
4 | @echo Delete the suo *.user *.tmp *.bak *.log files.
5 | @echo --------------------------------------------------
6 |
7 | del /f /s /a- *.suo *.user *.tmp *.bak *.log
8 |
9 | @echo --------------------------------------------------
10 | @echo Deleted the suo *.user *.tmp *.bak *.log files.
11 | @echo --------------------------------------------------
12 |
13 | pause
--------------------------------------------------------------------------------
/Other/BinarySerialize/TestBinarySerializeXplat/BuildAndExec.sh:
--------------------------------------------------------------------------------
1 | # 以下の様にしてWSLから実行する。改行コードはLFに変更してある。
2 | #$ cd /mnt/c/Git1/SampleProgram/Other/BinarySerialize/TestBinarySerializeXplat
3 | #$ ./BuildAndExec.sh
4 |
5 | cd /mnt/c/Git1/SampleProgram/Other/BinarySerialize/TestBinarySerializeXplat/core20
6 | dotnet publish -c Debug -r ubuntu.16.04-x64 --self-contained
7 | cd bin/Debug/netcoreapp2.0/ubuntu.16.04-x64
8 | dotnet TestBinarySerializeXplat.dll
9 |
10 | cd /mnt/c/Git1/SampleProgram/Other/BinarySerialize/TestBinarySerializeXplat/core30
11 | dotnet publish -c Debug -r ubuntu.16.04-x64 --self-contained
12 | cd bin/Debug/netcoreapp3.0/ubuntu.16.04-x64
13 | dotnet TestBinarySerializeXplat.dll
14 |
--------------------------------------------------------------------------------
/Other/BinarySerialize/TestBinarySerializeXplat/core20/TestBinarySerializeXplat.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Exe
5 | netcoreapp2.0
6 | $(NoWarn);NU1605
7 |
8 |
9 |
10 | TRACE;NETCORE20
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/Other/BinarySerialize/TestBinarySerializeXplat/core30/TestBinarySerializeXplat.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Exe
5 | netcoreapp3.0
6 | $(NoWarn);NU1605
7 |
8 |
9 |
10 | TRACE;NETCORE30
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/Other/BinarySerialize/TestBinarySerializeXplat/net45/App.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Other/BinarySerialize/TestBinarySerializeXplat/net46/App.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Other/BinarySerialize/TestBinarySerializeXplat/net47/App.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Other/BinarySerialize/TestBinarySerializeXplat/net48/App.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Other/DotNETBridge/BridgeDLL/BridgeDLL.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/DotNETBridge/BridgeDLL/BridgeDLL.cpp
--------------------------------------------------------------------------------
/Other/DotNETBridge/BridgeDLL/BridgeDLL.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 10.00
3 | # Visual Studio 2008
4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BridgeDLL", "BridgeDLL.vcproj", "{260FF9B1-F281-43E7-BF6A-2C0CAD8FB2F0}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|Win32 = Debug|Win32
9 | Release|Win32 = Release|Win32
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {260FF9B1-F281-43E7-BF6A-2C0CAD8FB2F0}.Debug|Win32.ActiveCfg = Debug|Win32
13 | {260FF9B1-F281-43E7-BF6A-2C0CAD8FB2F0}.Debug|Win32.Build.0 = Debug|Win32
14 | {260FF9B1-F281-43E7-BF6A-2C0CAD8FB2F0}.Release|Win32.ActiveCfg = Release|Win32
15 | {260FF9B1-F281-43E7-BF6A-2C0CAD8FB2F0}.Release|Win32.Build.0 = Release|Win32
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/Other/DotNETBridge/BridgeDLL/BridgeDLL.vcproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/DotNETBridge/BridgeDLL/BridgeDLL.vcproj
--------------------------------------------------------------------------------
/Other/DotNETBridge/BridgeDLL/dllmain.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/DotNETBridge/BridgeDLL/dllmain.cpp
--------------------------------------------------------------------------------
/Other/DotNETBridge/BridgeDLL/stdafx.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/DotNETBridge/BridgeDLL/stdafx.cpp
--------------------------------------------------------------------------------
/Other/DotNETBridge/BridgeDLL/stdafx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/DotNETBridge/BridgeDLL/stdafx.h
--------------------------------------------------------------------------------
/Other/DotNETBridge/BridgeDLL/targetver.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/DotNETBridge/BridgeDLL/targetver.h
--------------------------------------------------------------------------------
/Other/DotNETBridge/CallerEXE/CallerEXE.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/DotNETBridge/CallerEXE/CallerEXE.cpp
--------------------------------------------------------------------------------
/Other/DotNETBridge/CallerEXE/CallerEXE.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 10.00
3 | # Visual Studio 2008
4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CallerEXE", "CallerEXE.vcproj", "{2B2DD12B-0D0C-43C3-8C54-5744747EC64C}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|Win32 = Debug|Win32
9 | Release|Win32 = Release|Win32
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {2B2DD12B-0D0C-43C3-8C54-5744747EC64C}.Debug|Win32.ActiveCfg = Debug|Win32
13 | {2B2DD12B-0D0C-43C3-8C54-5744747EC64C}.Debug|Win32.Build.0 = Debug|Win32
14 | {2B2DD12B-0D0C-43C3-8C54-5744747EC64C}.Release|Win32.ActiveCfg = Release|Win32
15 | {2B2DD12B-0D0C-43C3-8C54-5744747EC64C}.Release|Win32.Build.0 = Release|Win32
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/Other/DotNETBridge/CallerEXE/CallerEXE.vcproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/DotNETBridge/CallerEXE/CallerEXE.vcproj
--------------------------------------------------------------------------------
/Other/DotNETBridge/CallerEXE/stdafx.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/DotNETBridge/CallerEXE/stdafx.cpp
--------------------------------------------------------------------------------
/Other/DotNETBridge/CallerEXE/stdafx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/DotNETBridge/CallerEXE/stdafx.h
--------------------------------------------------------------------------------
/Other/DotNETBridge/CallerEXE/targetver.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/DotNETBridge/CallerEXE/targetver.h
--------------------------------------------------------------------------------
/Other/DotNETBridge/CallerEXE2/CallerEXE2.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 10.00
3 | # Visual Studio 2008
4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CallerEXE2", "CallerEXE2.csproj", "{2C87F721-C148-4854-AFFF-12D4196D24E1}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|Any CPU = Debug|Any CPU
9 | Release|Any CPU = Release|Any CPU
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {2C87F721-C148-4854-AFFF-12D4196D24E1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13 | {2C87F721-C148-4854-AFFF-12D4196D24E1}.Debug|Any CPU.Build.0 = Debug|Any CPU
14 | {2C87F721-C148-4854-AFFF-12D4196D24E1}.Release|Any CPU.ActiveCfg = Release|Any CPU
15 | {2C87F721-C148-4854-AFFF-12D4196D24E1}.Release|Any CPU.Build.0 = Release|Any CPU
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/Other/DotNETBridge/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/DotNETBridge/README.md
--------------------------------------------------------------------------------
/Other/DotNETBridge/TargetAssembly/TargetAssembly.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 10.00
3 | # Visual Studio 2008
4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TargetAssembly", "TargetAssembly.csproj", "{E5067C7F-0D17-46A5-B652-C21C6E8CBF4C}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|Any CPU = Debug|Any CPU
9 | Release|Any CPU = Release|Any CPU
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {E5067C7F-0D17-46A5-B652-C21C6E8CBF4C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13 | {E5067C7F-0D17-46A5-B652-C21C6E8CBF4C}.Debug|Any CPU.Build.0 = Debug|Any CPU
14 | {E5067C7F-0D17-46A5-B652-C21C6E8CBF4C}.Release|Any CPU.ActiveCfg = Release|Any CPU
15 | {E5067C7F-0D17-46A5-B652-C21C6E8CBF4C}.Release|Any CPU.Build.0 = Release|Any CPU
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/Other/Encryption/TestECDsaXplat/TestECDsaXplat/App.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Other/Encryption/TestECDsaXplat/TestECDsaXplat/TestECDsaXplatCore.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Exe
5 | netcoreapp2.1
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/Other/Encryption/TestEncAndDecProvider/app.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Other/Encryption/TestEncAndDecProvider/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Other/Encryption/jose_jwt_Sample/jose_jwt_Sample/copy_cert.bat:
--------------------------------------------------------------------------------
1 | copy "C:\root\files\resource\X509\SHA256DSA.cer" SHA256DSA.cer
2 | copy "C:\root\files\resource\X509\SHA256DSA.pfx" SHA256DSA.pfx
3 | copy "C:\root\files\resource\X509\SHA256ECDSA.cer" SHA256ECDSA.cer
4 | copy "C:\root\files\resource\X509\SHA256ECDSA.pfx" SHA256ECDSA.pfx
5 | copy "C:\root\files\resource\X509\SHA256RSA.cer" SHA256RSA.cer
6 | copy "C:\root\files\resource\X509\SHA256RSA.pfx" SHA256RSA.pfx
7 |
--------------------------------------------------------------------------------
/Other/Encryption/jose_jwt_Sample/jose_jwt_Sample/test.bat:
--------------------------------------------------------------------------------
1 | dotnet jose_jwt_Sample.dll > result.txt
2 | pause
--------------------------------------------------------------------------------
/Other/InterProcComm/App.xaml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Other/InterProcComm/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Other/InterProcComm/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InterProcComm/README.md
--------------------------------------------------------------------------------
/Other/InterProcComm/Util/WindowsAPIErrorException.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InterProcComm/Util/WindowsAPIErrorException.cs
--------------------------------------------------------------------------------
/Other/InterProcComm/Window1.xaml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/DNET/DNET_COM/DNET_COM.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 10.00
3 | # Visual Studio 2008
4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DNET_COM", "DNET_COM.csproj", "{2BF8FD22-ACC1-4A28-BC24-AD56E6296687}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|Any CPU = Debug|Any CPU
9 | Release|Any CPU = Release|Any CPU
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {2BF8FD22-ACC1-4A28-BC24-AD56E6296687}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13 | {2BF8FD22-ACC1-4A28-BC24-AD56E6296687}.Debug|Any CPU.Build.0 = Debug|Any CPU
14 | {2BF8FD22-ACC1-4A28-BC24-AD56E6296687}.Release|Any CPU.ActiveCfg = Release|Any CPU
15 | {2BF8FD22-ACC1-4A28-BC24-AD56E6296687}.Release|Any CPU.Build.0 = Release|Any CPU
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/DNET/DNET_Client/App.xaml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/DNET/DNET_Client/DNET_Client.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 10.00
3 | # Visual Studio 2008
4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DNET_Client", "DNET_Client.csproj", "{CA4F5CF3-BA1E-4560-B52E-351716BD23E8}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|Any CPU = Debug|Any CPU
9 | Release|Any CPU = Release|Any CPU
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {CA4F5CF3-BA1E-4560-B52E-351716BD23E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13 | {CA4F5CF3-BA1E-4560-B52E-351716BD23E8}.Debug|Any CPU.Build.0 = Debug|Any CPU
14 | {CA4F5CF3-BA1E-4560-B52E-351716BD23E8}.Release|Any CPU.ActiveCfg = Release|Any CPU
15 | {CA4F5CF3-BA1E-4560-B52E-351716BD23E8}.Release|Any CPU.Build.0 = Release|Any CPU
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/DNET/DNET_Client/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/DNET/DNET_Client/Window1.xaml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/README.md
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/Script/JS_Client.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Untitled Page
5 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/Script/JS_Client2.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Untitled Page
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/Script/VBS_Client.vbs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/Script/VBS_Client.vbs
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VB/IObjSafety/DemoCtl.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VB/IObjSafety/DemoCtl.ctl
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VB/IObjSafety/IObjSafety.exp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VB/IObjSafety/IObjSafety.exp
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VB/IObjSafety/IObjSafety.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VB/IObjSafety/IObjSafety.html
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VB/IObjSafety/IObjSafety.lib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VB/IObjSafety/IObjSafety.lib
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VB/IObjSafety/IObjSafety.ocx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VB/IObjSafety/IObjSafety.ocx
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VB/IObjSafety/IObjSafety.vbw:
--------------------------------------------------------------------------------
1 | DemoCtl = 44, 44, 1226, 715, , 22, 22, 1204, 693, C
2 | basSafeCtl = 110, 110, 1292, 781,
3 |
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VB/IObjSafety/MKTYPLIB.EXE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VB/IObjSafety/MKTYPLIB.EXE
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VB/IObjSafety/readme.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VB/IObjSafety/readme.txt
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VB/VB_COM/ClassTest.cls:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VB/VB_COM/ClassTest.cls
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VB/VB_COM/VB_COM.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VB/VB_COM/VB_COM.dll
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VB/VB_COM/VB_COM.exp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VB/VB_COM/VB_COM.exp
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VB/VB_COM/VB_COM.lib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VB/VB_COM/VB_COM.lib
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VB/VB_COM/VB_COM.vbp:
--------------------------------------------------------------------------------
1 | Type=OleDll
2 | Class=ClassTest; ClassTest.cls
3 | Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\..\..\WINDOWS\system32\stdole2.tlb#OLE Automation
4 | Startup="(None)"
5 | HelpFile=""
6 | Title="VB_COM"
7 | ExeName32="VB_COM.dll"
8 | Command32=""
9 | Name="VB_COM"
10 | HelpContextID="0"
11 | CompatibleMode="2"
12 | CompatibleEXE32="VB_COM.dll"
13 | VersionCompatible32="1"
14 | MajorVer=1
15 | MinorVer=0
16 | RevisionVer=0
17 | AutoIncrementVer=0
18 | ServerSupportFiles=0
19 | VersionCompanyName="seigi"
20 | CompilationType=0
21 | OptimizationType=0
22 | FavorPentiumPro(tm)=0
23 | CodeViewDebugInfo=0
24 | NoAliasing=0
25 | BoundsCheck=0
26 | OverflowCheck=0
27 | FlPointCheck=0
28 | FDIVCheck=0
29 | UnroundedFP=0
30 | StartMode=1
31 | Unattended=-1
32 | Retained=1
33 | ThreadPerObject=0
34 | MaxNumberOfThreads=1
35 |
36 | [MS Transaction Server]
37 | AutoRefresh=1
38 |
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VB/VB_COM/VB_COM.vbw:
--------------------------------------------------------------------------------
1 | ClassTest = 22, 22, 804, 579, C
2 |
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VB/VB_Client/Form1.frm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VB/VB_Client/Form1.frm
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VB/VB_Client/VB_Client.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VB/VB_Client/VB_Client.exe
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VB/VB_Client/VB_Client.vbp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VB/VB_Client/VB_Client.vbp
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VB/VB_Client/VB_Client.vbw:
--------------------------------------------------------------------------------
1 | Form1 = 44, 44, 826, 601, Z, 22, 22, 920, 579, C
2 |
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VB/VB_Client/VC_DLL.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VB/VB_Client/VC_DLL.dll
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_COM/ClassTest.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_COM/ClassTest.cpp
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_COM/ClassTest.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_COM/ClassTest.h
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_COM/ClassTest.rgs:
--------------------------------------------------------------------------------
1 | HKCR
2 | {
3 | VC_COM.ClassTest.1 = s 'ClassTest Class'
4 | {
5 | CLSID = s '{35D055A8-7DA7-4868-979F-2F86F8B92B7E}'
6 | }
7 | VC_COM.ClassTest = s 'ClassTest Class'
8 | {
9 | CLSID = s '{35D055A8-7DA7-4868-979F-2F86F8B92B7E}'
10 | CurVer = s 'VC_COM.ClassTest.1'
11 | }
12 | NoRemove CLSID
13 | {
14 | ForceRemove {35D055A8-7DA7-4868-979F-2F86F8B92B7E} = s 'ClassTest Class'
15 | {
16 | ProgID = s 'VC_COM.ClassTest.1'
17 | VersionIndependentProgID = s 'VC_COM.ClassTest'
18 | ForceRemove 'Programmable'
19 | InprocServer32 = s '%MODULE%'
20 | {
21 | val ThreadingModel = s 'Apartment'
22 | }
23 | 'TypeLib' = s '{67F392A3-01AD-48D7-AC4F-56F0DC41807B}'
24 | }
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_COM/VC_COM.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_COM/VC_COM.cpp
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_COM/VC_COM.def:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_COM/VC_COM.def
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_COM/VC_COM.idl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_COM/VC_COM.idl
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_COM/VC_COM.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_COM/VC_COM.rc
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_COM/VC_COM.rgs:
--------------------------------------------------------------------------------
1 | HKCR
2 | {
3 | NoRemove AppID
4 | {
5 | '%APPID%' = s 'VC_COM'
6 | 'VC_COM.DLL'
7 | {
8 | val AppID = s '%APPID%'
9 | }
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_COM/VC_COM.vcproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_COM/VC_COM.vcproj
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_COM/VC_COMPS.vcproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_COM/VC_COMPS.vcproj
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_COM/VC_COMps.def:
--------------------------------------------------------------------------------
1 |
2 | LIBRARY "VC_COMPS"
3 |
4 | EXPORTS
5 | DllGetClassObject PRIVATE
6 | DllCanUnloadNow PRIVATE
7 | DllRegisterServer PRIVATE
8 | DllUnregisterServer PRIVATE
9 |
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_COM/dllmain.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_COM/dllmain.cpp
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_COM/dllmain.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_COM/dllmain.h
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_COM/resource.h:
--------------------------------------------------------------------------------
1 | //{{NO_DEPENDENCIES}}
2 | // Microsoft Visual C++ generated include file.
3 | // Used by VC_COM.rc
4 | //
5 | #define IDS_PROJNAME 100
6 | #define IDR_VC_COM 101
7 | #define IDR_CLASSTEST 102
8 |
9 | // Next default values for new objects
10 | //
11 | #ifdef APSTUDIO_INVOKED
12 | #ifndef APSTUDIO_READONLY_SYMBOLS
13 | #define _APS_NEXT_RESOURCE_VALUE 201
14 | #define _APS_NEXT_COMMAND_VALUE 32768
15 | #define _APS_NEXT_CONTROL_VALUE 201
16 | #define _APS_NEXT_SYMED_VALUE 103
17 | #endif
18 | #endif
19 |
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_COM/stdafx.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_COM/stdafx.cpp
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_COM/stdafx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_COM/stdafx.h
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_COM/targetver.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_COM/targetver.h
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_Client/VC_Client1/VC_Client1.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_Client/VC_Client1/VC_Client1.cpp
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_Client/VC_Client1/VC_Client1.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 10.00
3 | # Visual Studio 2008
4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VC_Client1", "VC_Client1.vcproj", "{AFD7305B-5F49-4424-AA46-625986F1F831}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|Win32 = Debug|Win32
9 | Release|Win32 = Release|Win32
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {AFD7305B-5F49-4424-AA46-625986F1F831}.Debug|Win32.ActiveCfg = Debug|Win32
13 | {AFD7305B-5F49-4424-AA46-625986F1F831}.Debug|Win32.Build.0 = Debug|Win32
14 | {AFD7305B-5F49-4424-AA46-625986F1F831}.Release|Win32.ActiveCfg = Release|Win32
15 | {AFD7305B-5F49-4424-AA46-625986F1F831}.Release|Win32.Build.0 = Release|Win32
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_Client/VC_Client1/VC_Client1.vcproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_Client/VC_Client1/VC_Client1.vcproj
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_Client/VC_Client1/stdafx.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_Client/VC_Client1/stdafx.cpp
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_Client/VC_Client1/stdafx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_Client/VC_Client1/stdafx.h
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_Client/VC_Client1/targetver.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_Client/VC_Client1/targetver.h
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_Client/VC_Client2/VC_Client2.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_Client/VC_Client2/VC_Client2.cpp
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_Client/VC_Client2/VC_Client2.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 10.00
3 | # Visual Studio 2008
4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VC_Client2", "VC_Client2.vcproj", "{99FCBBF0-AE8F-43CA-8F7F-AB08279C6CEC}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|Win32 = Debug|Win32
9 | Release|Win32 = Release|Win32
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {99FCBBF0-AE8F-43CA-8F7F-AB08279C6CEC}.Debug|Win32.ActiveCfg = Debug|Win32
13 | {99FCBBF0-AE8F-43CA-8F7F-AB08279C6CEC}.Debug|Win32.Build.0 = Debug|Win32
14 | {99FCBBF0-AE8F-43CA-8F7F-AB08279C6CEC}.Release|Win32.ActiveCfg = Release|Win32
15 | {99FCBBF0-AE8F-43CA-8F7F-AB08279C6CEC}.Release|Win32.Build.0 = Release|Win32
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_Client/VC_Client2/VC_Client2.vcproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_Client/VC_Client2/VC_Client2.vcproj
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_Client/VC_Client2/stdafx.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_Client/VC_Client2/stdafx.cpp
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_Client/VC_Client2/stdafx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_Client/VC_Client2/stdafx.h
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_Client/VC_Client2/targetver.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_Client/VC_Client2/targetver.h
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_Client/VC_Client3/VC_Client3.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_Client/VC_Client3/VC_Client3.cpp
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_Client/VC_Client3/VC_Client3.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 10.00
3 | # Visual Studio 2008
4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VC_Client3", "VC_Client3.vcproj", "{B42CC4B2-9B16-4F11-9FC3-EFBC3FBAA0A9}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|Win32 = Debug|Win32
9 | Release|Win32 = Release|Win32
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {B42CC4B2-9B16-4F11-9FC3-EFBC3FBAA0A9}.Debug|Win32.ActiveCfg = Debug|Win32
13 | {B42CC4B2-9B16-4F11-9FC3-EFBC3FBAA0A9}.Debug|Win32.Build.0 = Debug|Win32
14 | {B42CC4B2-9B16-4F11-9FC3-EFBC3FBAA0A9}.Release|Win32.ActiveCfg = Release|Win32
15 | {B42CC4B2-9B16-4F11-9FC3-EFBC3FBAA0A9}.Release|Win32.Build.0 = Release|Win32
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_Client/VC_Client3/VC_Client3.vcproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_Client/VC_Client3/VC_Client3.vcproj
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_Client/VC_Client3/stdafx.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_Client/VC_Client3/stdafx.cpp
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_Client/VC_Client3/stdafx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_Client/VC_Client3/stdafx.h
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_Client/VC_Client3/targetver.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_Client/VC_Client3/targetver.h
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_DLL/Exports.def:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_DLL/Exports.def
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_DLL/MYLIBAPI.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_DLL/MYLIBAPI.cpp
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_DLL/MYLIBAPI.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_DLL/MYLIBAPI.h
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_DLL/Simple.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_DLL/Simple.cpp
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_DLL/VC_DLL.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 10.00
3 | # Visual Studio 2008
4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VC_DLL", "VC_DLL.vcproj", "{09442489-4CE3-4415-AD3B-548277784F80}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|Win32 = Debug|Win32
9 | Release|Win32 = Release|Win32
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {09442489-4CE3-4415-AD3B-548277784F80}.Debug|Win32.ActiveCfg = Debug|Win32
13 | {09442489-4CE3-4415-AD3B-548277784F80}.Debug|Win32.Build.0 = Debug|Win32
14 | {09442489-4CE3-4415-AD3B-548277784F80}.Release|Win32.ActiveCfg = Release|Win32
15 | {09442489-4CE3-4415-AD3B-548277784F80}.Release|Win32.Build.0 = Release|Win32
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_DLL/VC_DLL.vcproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_DLL/VC_DLL.vcproj
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_DLL/dllmain.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_DLL/dllmain.cpp
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_DLL/stdafx.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_DLL/stdafx.cpp
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_DLL/stdafx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_DLL/stdafx.h
--------------------------------------------------------------------------------
/Other/InteropWithUnmanage/VC/VC_DLL/targetver.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/InteropWithUnmanage/VC/VC_DLL/targetver.h
--------------------------------------------------------------------------------
/Other/ThreadSafe/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/ThreadSafe/README.md
--------------------------------------------------------------------------------
/Other/ThreadSafe/ThreadSafe.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 10.00
3 | # Visual Studio 2008
4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ThreadSafe", "ThreadSafe.csproj", "{7E415D8C-36AB-4349-9284-EAF837E18323}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|Any CPU = Debug|Any CPU
9 | Release|Any CPU = Release|Any CPU
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {7E415D8C-36AB-4349-9284-EAF837E18323}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13 | {7E415D8C-36AB-4349-9284-EAF837E18323}.Debug|Any CPU.Build.0 = Debug|Any CPU
14 | {7E415D8C-36AB-4349-9284-EAF837E18323}.Release|Any CPU.ActiveCfg = Release|Any CPU
15 | {7E415D8C-36AB-4349-9284-EAF837E18323}.Release|Any CPU.Build.0 = Release|Any CPU
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/Other/ThreadSafe/exec.bat:
--------------------------------------------------------------------------------
1 | ThreadSafe.exe > result.txt
--------------------------------------------------------------------------------
/Other/VC_Samples/VC_AutoWrap/VC_AutoWrap.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/VC_Samples/VC_AutoWrap/VC_AutoWrap.cpp
--------------------------------------------------------------------------------
/Other/VC_Samples/VC_AutoWrap/VC_AutoWrap.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 10.00
3 | # Visual Studio 2008
4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VC_AutoWrap", "VC_AutoWrap.vcproj", "{33DCA52B-02B5-4CF4-B51D-6E73F332A416}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|Win32 = Debug|Win32
9 | Release|Win32 = Release|Win32
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {33DCA52B-02B5-4CF4-B51D-6E73F332A416}.Debug|Win32.ActiveCfg = Debug|Win32
13 | {33DCA52B-02B5-4CF4-B51D-6E73F332A416}.Debug|Win32.Build.0 = Debug|Win32
14 | {33DCA52B-02B5-4CF4-B51D-6E73F332A416}.Release|Win32.ActiveCfg = Release|Win32
15 | {33DCA52B-02B5-4CF4-B51D-6E73F332A416}.Release|Win32.Build.0 = Release|Win32
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/Other/VC_Samples/VC_AutoWrap/VC_AutoWrap.vcproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/VC_Samples/VC_AutoWrap/VC_AutoWrap.vcproj
--------------------------------------------------------------------------------
/Other/VC_Samples/VC_AutoWrap/stdafx.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/VC_Samples/VC_AutoWrap/stdafx.cpp
--------------------------------------------------------------------------------
/Other/VC_Samples/VC_AutoWrap/stdafx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/VC_Samples/VC_AutoWrap/stdafx.h
--------------------------------------------------------------------------------
/Other/VC_Samples/VC_AutoWrap/targetver.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Other/VC_Samples/VC_AutoWrap/targetver.h
--------------------------------------------------------------------------------
/PkgMgr/NuGet/ConsoleApp1/ConsoleApp1/App.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/PkgMgr/NuGet/ConsoleApp1/ConsoleApp1/ConsoleApp1_netstd2.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Exe
5 | netcoreapp2.1
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/PkgMgr/NuGet/ConsoleApp1/ConsoleApp1/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/PkgMgr/NuGet/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/PkgMgr/NuGet/README.md
--------------------------------------------------------------------------------
/PkgMgr/NuGet/TestClassLibrary1/2_DeleteFile.bat:
--------------------------------------------------------------------------------
1 | @echo off
2 |
3 | SET EXTENTION=*.suo *.user *.tmp *.log *.bak *.skrold
4 |
5 | @echo --------------------------------------------------
6 | @echo Delete the %EXTENTION%.
7 | @echo --------------------------------------------------
8 |
9 | del /f /s /a- %EXTENTION%
10 |
11 | @echo --------------------------------------------------
12 | @echo Deleted the %EXTENTION%.
13 | @echo --------------------------------------------------
14 |
15 | pause
16 |
--------------------------------------------------------------------------------
/PkgMgr/NuGet/TestClassLibrary1/4_NuGetPack.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/PkgMgr/NuGet/TestClassLibrary1/4_NuGetPack.bat
--------------------------------------------------------------------------------
/PkgMgr/NuGet/TestClassLibrary1/TestClassLibrary1/Class1.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | using Newtonsoft.Json;
8 |
9 | namespace OssCons.DotNetSubcommittee.TestClassLibrary1
10 | {
11 | /// Class1
12 | public class Class1
13 | {
14 | /// SerializeObject
15 | public static string SerializeObject(string[] array)
16 | {
17 | return JsonConvert.SerializeObject(array);
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/PkgMgr/NuGet/TestClassLibrary1/TestClassLibrary1/Class2.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | using Newtonsoft.Json;
8 |
9 | namespace OssCons.DotNetSubcommittee.TestClassLibrary1
10 | {
11 | /// Class2
12 | public class Class2
13 | {
14 | /// SerializeObject
15 | public static string SerializeObject(List list)
16 | {
17 | return JsonConvert.SerializeObject(list);
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/PkgMgr/NuGet/TestClassLibrary1/TestClassLibrary1/Class3.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | using Newtonsoft.Json;
8 |
9 | namespace OssCons.DotNetSubcommittee.TestClassLibrary1
10 | {
11 | /// Class3
12 | public class Class3
13 | {
14 | /// SerializeObject
15 | public static string SerializeObject(Dictionary dic)
16 | {
17 | return JsonConvert.SerializeObject(dic);
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/PkgMgr/NuGet/TestClassLibrary1/TestClassLibrary1/TestClassLibrary1_netstd2.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | netstandard2.0
5 | OssCons.DotNetSubcommittee.TestClassLibrary1
6 | OssCons.DotNetSubcommittee.TestClassLibrary1
7 | OssCons.DotNetSubcommittee.TestClassLibrary1
8 | 0.1.1
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/PkgMgr/NuGet/TestClassLibrary1/TestClassLibrary1/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/PkgMgr/NuGet/TestClassLibrary1/TestClassLibrary1/packages_net46.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/PkgMgr/NuGet/TestClassLibrary1/TestClassLibrary1/packages_net47.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/PkgMgr/NuGet/TestClassLibrary1/_OpenTouryo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/PkgMgr/NuGet/TestClassLibrary1/_OpenTouryo.png
--------------------------------------------------------------------------------
/PkgMgr/NuGet/TestClassLibrary1/pkg/Primary/NuGetPush.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/PkgMgr/NuGet/TestClassLibrary1/pkg/Primary/NuGetPush.bat
--------------------------------------------------------------------------------
/PkgMgr/NuGet/TestClassLibrary1/pkg/Symbol/NuGetPush.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/PkgMgr/NuGet/TestClassLibrary1/pkg/Symbol/NuGetPush.bat
--------------------------------------------------------------------------------
/PkgMgr/NuGet/nuget.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/PkgMgr/NuGet/nuget.exe
--------------------------------------------------------------------------------
/PkgMgr/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/PkgMgr/README.md
--------------------------------------------------------------------------------
/PkgMgr/npm/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/PkgMgr/npm/README.md
--------------------------------------------------------------------------------
/PkgMgr/npm/ossc/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/PkgMgr/npm/ossc/README.md
--------------------------------------------------------------------------------
/PkgMgr/npm/ossc/browser-app1/README.md:
--------------------------------------------------------------------------------
1 | # 使い方
2 | ブラウザからnpmテスト用のnpmパッケージを使用する。
3 |
4 | - npm_i.bat を叩く!
5 | - webpack_bundle.bat を叩く!
6 | - index.htmlをブラウザで開く(console出力を確認)。
--------------------------------------------------------------------------------
/PkgMgr/npm/ossc/browser-app1/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | Hello JavaScript
9 |
10 |
--------------------------------------------------------------------------------
/PkgMgr/npm/ossc/browser-app1/main.js:
--------------------------------------------------------------------------------
1 | var $ = require('jquery');
2 | var util = require('ossc-test-library1');
3 |
4 |
5 | $(function(){
6 | var $msg = $("#msg");
7 | $msg.fadeOut("slow", function(){
8 | $msg.text("jQuery")
9 | .css("color", "red")
10 | .fadeIn("slow");
11 | });
12 |
13 | util.sayAdd(1, 2); // 3
14 | util.saySubtract(2, 1); //1
15 | util.say // error. util.say is not a function
16 | });
--------------------------------------------------------------------------------
/PkgMgr/npm/ossc/browser-app1/npm_i.bat:
--------------------------------------------------------------------------------
1 | npm i
--------------------------------------------------------------------------------
/PkgMgr/npm/ossc/browser-app1/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "browser-app1",
3 | "version": "1.0.0",
4 | "description": "",
5 | "main": "main.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1"
8 | },
9 | "author": "",
10 | "license": "ISC",
11 | "dependencies": {
12 | "jquery": "^3.4.1",
13 | "ossc-test-library1": "0.0.1"
14 | },
15 | "devDependencies": {
16 | "webpack": "^4.41.5",
17 | "webpack-cli": "^3.3.10"
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/PkgMgr/npm/ossc/browser-app1/webpack_bundle.bat:
--------------------------------------------------------------------------------
1 | npx webpack --mode development main.js --output bundle.js
2 | pause
--------------------------------------------------------------------------------
/PkgMgr/npm/ossc/console-app1/README.md:
--------------------------------------------------------------------------------
1 | # 使い方
2 | Node.jsからnpmテスト用のnpmパッケージを使用する。
3 |
4 | - npm_i.bat を叩く!
5 | - node_test を叩く!
--------------------------------------------------------------------------------
/PkgMgr/npm/ossc/console-app1/node_test.bat:
--------------------------------------------------------------------------------
1 | node test.js
2 | pause
--------------------------------------------------------------------------------
/PkgMgr/npm/ossc/console-app1/npm_i.bat:
--------------------------------------------------------------------------------
1 | npm i
--------------------------------------------------------------------------------
/PkgMgr/npm/ossc/console-app1/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "console-app1",
3 | "version": "1.0.0",
4 | "description": "",
5 | "main": "test.js",
6 | "dependencies": {
7 | "moji": "^0.5.1",
8 | "ossc-test-library1": "0.0.1"
9 | },
10 | "devDependencies": {},
11 | "scripts": {
12 | "test": "echo \"Error: no test specified\" && exit 1"
13 | },
14 | "author": "",
15 | "license": "ISC"
16 | }
17 |
--------------------------------------------------------------------------------
/PkgMgr/npm/ossc/console-app1/test.js:
--------------------------------------------------------------------------------
1 | var util = require('ossc-test-library1');
2 |
3 | util.sayAdd(1, 2); // 3
4 | util.saySubtract(2, 1); //1
5 | util.say // error. util.say is not a function
--------------------------------------------------------------------------------
/PkgMgr/npm/ossc/ossc-test-library1/README.md:
--------------------------------------------------------------------------------
1 | # メモ
2 | npmテスト用のnpmパッケージ
3 |
4 | - npmパッケージの開発と公開 - .NET 開発基盤部会 Wiki > 参考 > ossc-test-library1
5 | https://dotnetdevelopmentinfrastructure.osscons.jp/index.php?npm%E3%83%91%E3%83%83%E3%82%B1%E3%83%BC%E3%82%B8%E3%81%AE%E9%96%8B%E7%99%BA%E3%81%A8%E5%85%AC%E9%96%8B#lb1c5d0d
--------------------------------------------------------------------------------
/PkgMgr/npm/ossc/ossc-test-library1/index.js:
--------------------------------------------------------------------------------
1 | var moji = require('moji');
2 |
3 | exports.sayAdd = function(a, b) {
4 | say(a + b);
5 | }
6 |
7 | exports.saySubtract = function(a, b) {
8 | say(a - b);
9 | }
10 |
11 | say = function(word) {
12 | word = moji(word.toString()).convert('HE', 'ZE').toString();
13 | console.log(word);
14 | }
--------------------------------------------------------------------------------
/PkgMgr/npm/ossc/ossc-test-library1/node_test.bat:
--------------------------------------------------------------------------------
1 | node test.js
2 | pause
--------------------------------------------------------------------------------
/PkgMgr/npm/ossc/ossc-test-library1/npm_i.bat:
--------------------------------------------------------------------------------
1 | npm i
--------------------------------------------------------------------------------
/PkgMgr/npm/ossc/ossc-test-library1/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "ossc-test-library1",
3 | "version": "0.0.4",
4 | "lockfileVersion": 1,
5 | "requires": true,
6 | "dependencies": {
7 | "moji": {
8 | "version": "0.5.1",
9 | "resolved": "https://registry.npmjs.org/moji/-/moji-0.5.1.tgz",
10 | "integrity": "sha1-CI7s0cIsjzGiQK3PnJXlTzPrVPs=",
11 | "requires": {
12 | "object-assign": "^3.0.0"
13 | }
14 | },
15 | "object-assign": {
16 | "version": "3.0.0",
17 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz",
18 | "integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I="
19 | }
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/PkgMgr/npm/ossc/ossc-test-library1/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "ossc-test-library1",
3 | "version": "0.0.4",
4 | "description": "osscons.jp test library1",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "node test"
8 | },
9 | "keywords": [
10 | "hogehoge"
11 | ],
12 | "repository": {
13 | "type": "git",
14 | "url": "https://github.com/OpenTouryoProject/SampleProgram/tree/master/npm/ossc-test-library1"
15 | },
16 | "author": "OSS Consortium .net subcommittee",
17 | "maintainers": [
18 | {
19 | "name": "daisukenishino77",
20 | "email": "daisukenishino77@gmail.com"
21 | }
22 | ],
23 | "license": "Apache-2.0",
24 | "dependencies": {
25 | "moji": "^0.5.1"
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/PkgMgr/npm/ossc/ossc-test-library1/test.js:
--------------------------------------------------------------------------------
1 | var util = require('./index');
2 |
3 | util.sayAdd(1, 2); // 3
4 | util.saySubtract(2, 1); //1
5 | util.say // error. util.say is not a function
--------------------------------------------------------------------------------
/PkgMgr/npm/touryo/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/PkgMgr/npm/touryo/README.md
--------------------------------------------------------------------------------
/PkgMgr/npm/touryo/browser-app1/README.md:
--------------------------------------------------------------------------------
1 | # 使い方
2 | ブラウザからnpmテスト用のnpmパッケージを使用する。
3 |
4 | - npm_i.bat を叩く!
5 | - webpack_bundle.bat を叩く!
6 | - index.htmlをブラウザで開く(console出力を確認)。
--------------------------------------------------------------------------------
/PkgMgr/npm/touryo/browser-app1/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | Hello JavaScript
9 |
10 |
--------------------------------------------------------------------------------
/PkgMgr/npm/touryo/browser-app1/main.js:
--------------------------------------------------------------------------------
1 | var $ = require('jquery');
2 | var util = require('ossc-test-library1');
3 |
4 |
5 | $(function(){
6 | var $msg = $("#msg");
7 | $msg.fadeOut("slow", function(){
8 | $msg.text("jQuery")
9 | .css("color", "red")
10 | .fadeIn("slow");
11 | });
12 |
13 | util.sayAdd(1, 2); // 3
14 | util.saySubtract(2, 1); //1
15 | util.say // error. util.say is not a function
16 | });
--------------------------------------------------------------------------------
/PkgMgr/npm/touryo/browser-app1/npm_i.bat:
--------------------------------------------------------------------------------
1 | npm i
--------------------------------------------------------------------------------
/PkgMgr/npm/touryo/browser-app1/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "browser-app1",
3 | "version": "1.0.0",
4 | "description": "",
5 | "main": "main.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1"
8 | },
9 | "author": "",
10 | "license": "ISC",
11 | "dependencies": {
12 | "jquery": "^3.4.1",
13 | "ossc-test-library1": "0.0.1"
14 | },
15 | "devDependencies": {
16 | "webpack": "^4.41.5",
17 | "webpack-cli": "^3.3.10"
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/PkgMgr/npm/touryo/browser-app1/webpack_bundle.bat:
--------------------------------------------------------------------------------
1 | npx webpack --mode development main.js --output bundle.js
2 | pause
--------------------------------------------------------------------------------
/PkgMgr/npm/touryo/console-app1/README.md:
--------------------------------------------------------------------------------
1 | # 使い方
2 | Node.jsからnpmテスト用のnpmパッケージを使用する。
3 |
4 | - npm_i.bat を叩く!
5 | - node_test を叩く!
--------------------------------------------------------------------------------
/PkgMgr/npm/touryo/console-app1/node_test.bat:
--------------------------------------------------------------------------------
1 | node test.js
2 | pause
--------------------------------------------------------------------------------
/PkgMgr/npm/touryo/console-app1/npm_i.bat:
--------------------------------------------------------------------------------
1 | npm i
--------------------------------------------------------------------------------
/PkgMgr/npm/touryo/console-app1/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "console-app1",
3 | "version": "1.0.0",
4 | "description": "",
5 | "main": "test.js",
6 | "dependencies": {
7 | "moji": "^0.5.1",
8 | "ossc-test-library1": "0.0.1"
9 | },
10 | "devDependencies": {},
11 | "scripts": {
12 | "test": "echo \"Error: no test specified\" && exit 1"
13 | },
14 | "author": "",
15 | "license": "ISC"
16 | }
17 |
--------------------------------------------------------------------------------
/PkgMgr/npm/touryo/console-app1/test.js:
--------------------------------------------------------------------------------
1 | var util = require('ossc-test-library1');
2 |
3 | util.sayAdd(1, 2); // 3
4 | util.saySubtract(2, 1); //1
5 | util.say // error. util.say is not a function
--------------------------------------------------------------------------------
/PkgMgr/npm/touryo/touryo-test-library1/README.md:
--------------------------------------------------------------------------------
1 | # メモ
2 | npmテスト用のnpmパッケージ
3 |
4 | - npmパッケージの開発と公開 - 開発基盤部会 Wiki > 参考 > ossc-test-library1
5 | https://dotnetdevelopmentinfrastructure.osscons.jp/index.php?npm%E3%83%91%E3%83%83%E3%82%B1%E3%83%BC%E3%82%B8%E3%81%AE%E9%96%8B%E7%99%BA%E3%81%A8%E5%85%AC%E9%96%8B#lb1c5d0d
--------------------------------------------------------------------------------
/PkgMgr/npm/touryo/touryo-test-library1/index.js:
--------------------------------------------------------------------------------
1 | var moji = require('moji');
2 |
3 | exports.sayAdd = function(a, b) {
4 | say(a + b);
5 | }
6 |
7 | exports.saySubtract = function(a, b) {
8 | say(a - b);
9 | }
10 |
11 | say = function(word) {
12 | word = moji(word.toString()).convert('HE', 'ZE').toString();
13 | console.log(word);
14 | }
--------------------------------------------------------------------------------
/PkgMgr/npm/touryo/touryo-test-library1/node_test.bat:
--------------------------------------------------------------------------------
1 | node test.js
2 | pause
--------------------------------------------------------------------------------
/PkgMgr/npm/touryo/touryo-test-library1/npm_i.bat:
--------------------------------------------------------------------------------
1 | npm i
--------------------------------------------------------------------------------
/PkgMgr/npm/touryo/touryo-test-library1/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "@touryo/test-library1",
3 | "version": "0.0.1",
4 | "lockfileVersion": 1,
5 | "requires": true,
6 | "dependencies": {
7 | "moji": {
8 | "version": "0.5.1",
9 | "resolved": "https://registry.npmjs.org/moji/-/moji-0.5.1.tgz",
10 | "integrity": "sha1-CI7s0cIsjzGiQK3PnJXlTzPrVPs=",
11 | "requires": {
12 | "object-assign": "^3.0.0"
13 | }
14 | },
15 | "object-assign": {
16 | "version": "3.0.0",
17 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz",
18 | "integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I="
19 | }
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/PkgMgr/npm/touryo/touryo-test-library1/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "@touryo/test-library1",
3 | "version": "0.0.1",
4 | "description": "touryo test library1",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "node test"
8 | },
9 | "keywords": [
10 | "hogehoge"
11 | ],
12 | "repository": {
13 | "type": "git",
14 | "url": "https://github.com/OpenTouryoProject/SampleProgram/tree/master/npm/touryo-test-library1"
15 | },
16 | "author": "OSS Consortium dev-infra subcommittee",
17 | "maintainers": [
18 | {
19 | "name": "daisukenishino77",
20 | "email": "daisukenishino77@gmail.com"
21 | }
22 | ],
23 | "license": "Apache-2.0",
24 | "dependencies": {
25 | "moji": "^0.5.1"
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/PkgMgr/npm/touryo/touryo-test-library1/test.js:
--------------------------------------------------------------------------------
1 | var util = require('./index');
2 |
3 | util.sayAdd(1, 2); // 3
4 | util.saySubtract(2, 1); //1
5 | util.say // error. util.say is not a function
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/.gitignore:
--------------------------------------------------------------------------------
1 | # .gitignore
2 | [Pp]lugins/android.json
3 | [Pp]lugins/windows.json
4 | [Pp]lugins/wp8.json
5 | [Pp]lugins/remote_ios.json
6 | /[Pp]latforms/
7 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "CordovaTemplate",
3 | "dependencies": {
4 | }
5 | }
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/build.json:
--------------------------------------------------------------------------------
1 | {
2 | "android": {
3 | "release": {
4 | "keystore": "",
5 | "storePassword": "",
6 | "alias": "",
7 | "password" : "",
8 | "keystoreType": ""
9 | }
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/merges/android/scripts/platformOverrides.js:
--------------------------------------------------------------------------------
1 | (function () {
2 | // bind() ポリフィルを追加します
3 | var scriptElem = document.createElement('script');
4 | scriptElem.setAttribute('src', 'scripts/android2.3-jscompat.js');
5 | if (document.body) {
6 | document.body.appendChild(scriptElem);
7 | } else {
8 | document.head.appendChild(scriptElem);
9 | }
10 | }());
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "CordovaTemplate",
3 | "version": "1.0.0",
4 | "private": true,
5 | "dependencies": {
6 | "cordova-android": "^7.0.0",
7 | "cordova-plugin-customurlscheme": "^4.3.0",
8 | "cordova-plugin-whitelist": "^1.3.3"
9 | },
10 | "cordova": {
11 | "plugins": {
12 | "cordova-plugin-whitelist": {},
13 | "cordova-plugin-customurlscheme": {
14 | "URL_SCHEME": "cordovatemplate",
15 | "ANDROID_SCHEME": " ",
16 | "ANDROID_HOST": " ",
17 | "ANDROID_PATHPREFIX": "/"
18 | }
19 | },
20 | "platforms": [
21 | "android"
22 | ]
23 | }
24 | }
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/icons/android/icon-36-ldpi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/icons/android/icon-36-ldpi.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/icons/android/icon-48-mdpi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/icons/android/icon-48-mdpi.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/icons/android/icon-72-hdpi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/icons/android/icon-72-hdpi.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/icons/android/icon-96-xhdpi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/icons/android/icon-96-xhdpi.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-40-2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-40-2x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-40.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-50-2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-50-2x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-50.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-57-2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-57-2x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-57.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-57.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-60-2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-60-2x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-60-3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-60-3x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-60.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-72-2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-72-2x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-72.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-76-2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-76-2x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-76.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-small-2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-small-2x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/icons/ios/icon-small.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/native/android/ant.properties:
--------------------------------------------------------------------------------
1 | key.store=
2 | key.alias=
3 | key.store.password=
4 | key.alias.password=
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/screens/android/screen-hdpi-landscape.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/screens/android/screen-hdpi-landscape.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/screens/android/screen-hdpi-portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/screens/android/screen-hdpi-portrait.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/screens/android/screen-ldpi-landscape.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/screens/android/screen-ldpi-landscape.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/screens/android/screen-ldpi-portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/screens/android/screen-ldpi-portrait.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/screens/android/screen-mdpi-landscape.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/screens/android/screen-mdpi-landscape.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/screens/android/screen-mdpi-portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/screens/android/screen-mdpi-portrait.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/screens/android/screen-xhdpi-landscape.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/screens/android/screen-xhdpi-landscape.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/screens/android/screen-xhdpi-portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/screens/android/screen-xhdpi-portrait.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/screens/ios/screen-ipad-landscape-2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/screens/ios/screen-ipad-landscape-2x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/screens/ios/screen-ipad-landscape.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/screens/ios/screen-ipad-landscape.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/screens/ios/screen-ipad-portrait-2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/screens/ios/screen-ipad-portrait-2x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/screens/ios/screen-ipad-portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/screens/ios/screen-ipad-portrait.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/screens/ios/screen-iphone-568h-2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/screens/ios/screen-iphone-568h-2x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/screens/ios/screen-iphone-landscape-736h.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/screens/ios/screen-iphone-landscape-736h.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/screens/ios/screen-iphone-portrait-2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/screens/ios/screen-iphone-portrait-2x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/screens/ios/screen-iphone-portrait-667h.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/screens/ios/screen-iphone-portrait-667h.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/screens/ios/screen-iphone-portrait-736h.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/screens/ios/screen-iphone-portrait-736h.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/res/screens/ios/screen-iphone-portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/res/screens/ios/screen-iphone-portrait.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/www/images/cordova.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/www/images/cordova.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/CordovaTemplate/www/scripts/platformOverrides.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/CordovaTemplate/www/scripts/platformOverrides.js
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/.gitignore:
--------------------------------------------------------------------------------
1 | # Miscellaneous
2 | *.class
3 | *.log
4 | *.pyc
5 | *.swp
6 | .DS_Store
7 | .atom/
8 | .buildlog/
9 | .history
10 | .svn/
11 |
12 | # IntelliJ related
13 | *.iml
14 | *.ipr
15 | *.iws
16 | .idea/
17 |
18 | # The .vscode folder contains launch configuration and tasks you configure in
19 | # VS Code which you may wish to be included in version control, so this line
20 | # is commented out by default.
21 | #.vscode/
22 |
23 | # Flutter/Dart/Pub related
24 | **/doc/api/
25 | **/ios/Flutter/.last_build_id
26 | .dart_tool/
27 | .flutter-plugins
28 | .flutter-plugins-dependencies
29 | .packages
30 | .pub-cache/
31 | .pub/
32 | /build/
33 |
34 | # Web related
35 | lib/generated_plugin_registrant.dart
36 |
37 | # Symbolication related
38 | app.*.symbols
39 |
40 | # Obfuscation related
41 | app.*.map.json
42 |
43 | # Android Studio will place build artifacts here
44 | /android/app/debug
45 | /android/app/profile
46 | /android/app/release
47 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/.metadata:
--------------------------------------------------------------------------------
1 | # This file tracks properties of this Flutter project.
2 | # Used by Flutter tool to assess capabilities and perform upgrades etc.
3 | #
4 | # This file should be version controlled and should not be manually edited.
5 |
6 | version:
7 | revision: 02c026b03cd31dd3f867e5faeb7e104cce174c5f
8 | channel: stable
9 |
10 | project_type: app
11 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/README.md:
--------------------------------------------------------------------------------
1 | # How to use
2 | Add the necessary information for push notifications.
3 |
4 | - /lib/token_monitor.dart
5 | - /android/app/google-services.json
6 |
7 | To change the authentication server to be used,
8 | change the URL and parameters in the following file.
9 |
10 | - /lib/main.dart
11 |
12 | For the settings of Private-Use URI Scheme Redirection and
13 | Claimed Https Scheme URI Redirection, please set them in the following files.
14 |
15 | - /android/app/src/main/AndroidManifest.xml
16 | - /android/app/build.gradle
17 |
18 | If the authentication server uses a self-signed certificate,
19 | add the certificate to the following location to allow for self-signed certificates.
20 | This file can be exported as a CER in DER from the location bar of the browser.
21 |
22 | - /android/app/src/debug/res/raw/my_ca.cer
23 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/android/.gitignore:
--------------------------------------------------------------------------------
1 | gradle-wrapper.jar
2 | /.gradle
3 | /captures/
4 | /gradlew
5 | /gradlew.bat
6 | /local.properties
7 | GeneratedPluginRegistrant.java
8 |
9 | # Remember to never publicly share your keystore.
10 | # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
11 | key.properties
12 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/android/app/google-services.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/android/app/google-services.json
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/android/app/src/debug/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/android/app/src/debug/res/xml/network_security_config.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/android/app/src/main/res/drawable-v21/launch_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
12 |
13 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/android/app/src/main/res/drawable/launch_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
12 |
13 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/android/app/src/main/res/drawable/notification_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/android/app/src/main/res/drawable/notification_icon.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/android/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #e26338
4 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/android/app/src/main/res/xml/network_security_config.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/android/app/src/profile/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/android/build.gradle:
--------------------------------------------------------------------------------
1 | buildscript {
2 | ext.kotlin_version = '1.3.50'
3 | repositories {
4 | google()
5 | jcenter()
6 | }
7 |
8 | dependencies {
9 | classpath 'com.android.tools.build:gradle:4.1.0'
10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
11 | classpath 'com.google.gms:google-services:4.3.5'
12 | }
13 | }
14 |
15 | allprojects {
16 | repositories {
17 | google()
18 | jcenter()
19 | }
20 | }
21 |
22 | rootProject.buildDir = '../build'
23 | subprojects {
24 | project.buildDir = "${rootProject.buildDir}/${project.name}"
25 | project.evaluationDependsOn(':app')
26 | }
27 |
28 | task clean(type: Delete) {
29 | delete rootProject.buildDir
30 | }
31 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/android/gradle.properties:
--------------------------------------------------------------------------------
1 | org.gradle.jvmargs=-Xmx1536M
2 | android.useAndroidX=true
3 | android.enableJetifier=true
4 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Fri Jun 23 08:50:38 CEST 2017
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip
7 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/android/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
3 | def localPropertiesFile = new File(rootProject.projectDir, "local.properties")
4 | def properties = new Properties()
5 |
6 | assert localPropertiesFile.exists()
7 | localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) }
8 |
9 | def flutterSdkPath = properties.getProperty("flutter.sdk")
10 | assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
11 | apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"
12 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/android/settings_aar.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/.gitignore:
--------------------------------------------------------------------------------
1 | *.mode1v3
2 | *.mode2v3
3 | *.moved-aside
4 | *.pbxuser
5 | *.perspectivev3
6 | **/*sync/
7 | .sconsign.dblite
8 | .tags*
9 | **/.vagrant/
10 | **/DerivedData/
11 | Icon?
12 | **/Pods/
13 | **/.symlinks/
14 | profile
15 | xcuserdata
16 | **/.generated/
17 | Flutter/App.framework
18 | Flutter/Flutter.framework
19 | Flutter/Flutter.podspec
20 | Flutter/Generated.xcconfig
21 | Flutter/ephemeral/
22 | Flutter/app.flx
23 | Flutter/app.zip
24 | Flutter/flutter_assets/
25 | Flutter/flutter_export_environment.sh
26 | ServiceDefinitions.json
27 | Runner/GeneratedPluginRegistrant.*
28 |
29 | # Exceptions to above rules.
30 | !default.mode1v3
31 | !default.mode2v3
32 | !default.pbxuser
33 | !default.perspectivev3
34 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Flutter/AppFrameworkInfo.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | App
9 | CFBundleIdentifier
10 | io.flutter.flutter.app
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | App
15 | CFBundlePackageType
16 | FMWK
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1.0
23 | MinimumOSVersion
24 | 8.0
25 |
26 |
27 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Flutter/Debug.xcconfig:
--------------------------------------------------------------------------------
1 | #include "Generated.xcconfig"
2 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Flutter/Release.xcconfig:
--------------------------------------------------------------------------------
1 | #include "Generated.xcconfig"
2 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PreviewsEnabled
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PreviewsEnabled
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | import UIKit
2 | import Flutter
3 |
4 | @UIApplicationMain
5 | @objc class AppDelegate: FlutterAppDelegate {
6 | override func application(
7 | _ application: UIApplication,
8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
9 | ) -> Bool {
10 | GeneratedPluginRegistrant.register(with: self)
11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions)
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "universal",
5 | "filename" : "LaunchImage.png",
6 | "scale" : "1x"
7 | },
8 | {
9 | "idiom" : "universal",
10 | "filename" : "LaunchImage@2x.png",
11 | "scale" : "2x"
12 | },
13 | {
14 | "idiom" : "universal",
15 | "filename" : "LaunchImage@3x.png",
16 | "scale" : "3x"
17 | }
18 | ],
19 | "info" : {
20 | "version" : 1,
21 | "author" : "xcode"
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md:
--------------------------------------------------------------------------------
1 | # Launch Screen Assets
2 |
3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory.
4 |
5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images.
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/ios/Runner/Runner-Bridging-Header.h:
--------------------------------------------------------------------------------
1 | #import "GeneratedPluginRegistrant.h"
2 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/lib/generated_plugin_registrant.dart:
--------------------------------------------------------------------------------
1 | //
2 | // Generated file. Do not edit.
3 | //
4 |
5 | // ignore_for_file: lines_longer_than_80_chars
6 |
7 | import 'package:firebase_core_web/firebase_core_web.dart';
8 | import 'package:firebase_messaging_web/firebase_messaging_web.dart';
9 | import 'package:shared_preferences_web/shared_preferences_web.dart';
10 | import 'package:url_launcher_web/url_launcher_web.dart';
11 |
12 | import 'package:flutter_web_plugins/flutter_web_plugins.dart';
13 |
14 | // ignore: public_member_api_docs
15 | void registerPlugins(Registrar registrar) {
16 | FirebaseCoreWeb.registerWith(registrar);
17 | FirebaseMessagingWeb.registerWith(registrar);
18 | SharedPreferencesPlugin.registerWith(registrar);
19 | UrlLauncherPlugin.registerWith(registrar);
20 | registrar.registerMessageHandler();
21 | }
22 |
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/lib/meta_card.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 |
3 | /// UI Widget for displaying metadata.
4 | class MetaCard extends StatelessWidget {
5 | final String _title;
6 | final Widget _children;
7 |
8 | // ignore: public_member_api_docs
9 | MetaCard(this._title, this._children);
10 |
11 | @override
12 | Widget build(BuildContext context) {
13 | return Container(
14 | width: double.infinity,
15 | margin: const EdgeInsets.only(left: 8, right: 8, top: 8),
16 | child: Card(
17 | child: Padding(
18 | padding: const EdgeInsets.all(16),
19 | child: Column(children: [
20 | Container(
21 | margin: const EdgeInsets.only(bottom: 16),
22 | child:
23 | Text(_title, style: const TextStyle(fontSize: 18))
24 | ),
25 | this._children,
26 | ])
27 | )
28 | )
29 | );
30 | }
31 | }
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/web/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/web/favicon.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/web/icons/Icon-192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/web/icons/Icon-192.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/web/icons/Icon-512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/MobileTemplate/flutter_template/web/icons/Icon-512.png
--------------------------------------------------------------------------------
/Template/MobileTemplate/flutter_template/web/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "flutter_template",
3 | "short_name": "flutter_template",
4 | "start_url": ".",
5 | "display": "standalone",
6 | "background_color": "#0175C2",
7 | "theme_color": "#0175C2",
8 | "description": "A new Flutter project.",
9 | "orientation": "portrait-primary",
10 | "prefer_related_applications": false,
11 | "icons": [
12 | {
13 | "src": "icons/Icon-192.png",
14 | "sizes": "192x192",
15 | "type": "image/png"
16 | },
17 | {
18 | "src": "icons/Icon-512.png",
19 | "sizes": "512x512",
20 | "type": "image/png"
21 | }
22 | ]
23 | }
24 |
--------------------------------------------------------------------------------
/Template/SPATemplate/react-redux-todo/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/ignore-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 |
6 | # testing
7 | /coverage
8 |
9 | # production
10 | /build
11 |
12 | # misc
13 | .DS_Store
14 | .env.local
15 | .env.development.local
16 | .env.test.local
17 | .env.production.local
18 |
19 | npm-debug.log*
20 | yarn-debug.log*
21 | yarn-error.log*
22 |
--------------------------------------------------------------------------------
/Template/SPATemplate/react-redux-todo/npm_i.bat:
--------------------------------------------------------------------------------
1 | npm i
--------------------------------------------------------------------------------
/Template/SPATemplate/react-redux-todo/npm_start.bat:
--------------------------------------------------------------------------------
1 | npm start
--------------------------------------------------------------------------------
/Template/SPATemplate/react-redux-todo/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "react-redux-todo",
3 | "version": "0.1.0",
4 | "private": true,
5 | "dependencies": {
6 | "react": "^16.4.1",
7 | "react-dom": "^16.4.1",
8 | "react-redux": "^5.0.7",
9 | "react-scripts": "1.1.4",
10 | "redux": "^4.0.0",
11 | "redux-logger": "^3.0.6"
12 | },
13 | "scripts": {
14 | "start": "react-scripts start",
15 | "build": "react-scripts build",
16 | "test": "react-scripts test --env=jsdom",
17 | "eject": "react-scripts eject"
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/Template/SPATemplate/react-redux-todo/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/SPATemplate/react-redux-todo/public/favicon.ico
--------------------------------------------------------------------------------
/Template/SPATemplate/react-redux-todo/public/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "short_name": "React App",
3 | "name": "Create React App Sample",
4 | "icons": [
5 | {
6 | "src": "favicon.ico",
7 | "sizes": "64x64 32x32 24x24 16x16",
8 | "type": "image/x-icon"
9 | }
10 | ],
11 | "start_url": "./index.html",
12 | "display": "standalone",
13 | "theme_color": "#000000",
14 | "background_color": "#ffffff"
15 | }
16 |
--------------------------------------------------------------------------------
/Template/SPATemplate/react-redux-todo/src/App.css:
--------------------------------------------------------------------------------
1 | .App {
2 | text-align: center;
3 | }
4 |
5 | .App-logo {
6 | animation: App-logo-spin infinite 20s linear;
7 | height: 80px;
8 | }
9 |
10 | .App-header {
11 | background-color: #222;
12 | height: 150px;
13 | padding: 20px;
14 | color: white;
15 | }
16 |
17 | .App-title {
18 | font-size: 1.5em;
19 | }
20 |
21 | .App-intro {
22 | font-size: large;
23 | }
24 |
25 | @keyframes App-logo-spin {
26 | from { transform: rotate(0deg); }
27 | to { transform: rotate(360deg); }
28 | }
29 |
--------------------------------------------------------------------------------
/Template/SPATemplate/react-redux-todo/src/App.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import logo from './logo.svg';
3 | import './App.css';
4 | import Todo from './containers/Todo';
5 |
6 | class App extends Component {
7 | render() {
8 | return (
9 |
10 |
11 |
12 | Welcome to React
13 |
14 |
15 |
16 | );
17 | }
18 | }
19 |
20 | export default App;
--------------------------------------------------------------------------------
/Template/SPATemplate/react-redux-todo/src/App.test.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom';
3 | import App from './App';
4 |
5 | it('renders without crashing', () => {
6 | const div = document.createElement('div');
7 | ReactDOM.render(, div);
8 | ReactDOM.unmountComponentAtNode(div);
9 | });
10 |
--------------------------------------------------------------------------------
/Template/SPATemplate/react-redux-todo/src/actions/Todo.js:
--------------------------------------------------------------------------------
1 | export const addTodo = (todo) => {
2 | return {
3 | type: 'ADD_TODO',
4 | payload: { todo: todo }
5 | };
6 | }
--------------------------------------------------------------------------------
/Template/SPATemplate/react-redux-todo/src/components/Todo.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | export default class Todo extends React.Component {
4 | state = {
5 | todo: ''
6 | }
7 |
8 | render() {
9 | console.log("components/Todo.props: " + JSON.stringify(this.props));
10 | console.log("components/Todo.state: " + JSON.stringify(this.state));
11 |
12 | // StoreのTodoからリストを生成
13 | const list = this.props.todo.todoList.map((todo, index) => {todo})
14 |
15 | return (
16 |
17 |
this.setState({ todo: elm.target.value })} />
18 |
19 |
22 |
23 | );
24 | }
25 | }
--------------------------------------------------------------------------------
/Template/SPATemplate/react-redux-todo/src/containers/Todo.js:
--------------------------------------------------------------------------------
1 | import { connect } from 'react-redux';
2 | import * as actions from '../actions/Todo';
3 | import Todo from '../components/Todo';
4 |
5 | const mapStateToProps = state => {
6 | return {
7 | todo: state.todo,
8 | }
9 | }
10 |
11 | const mapDispatchToProps = dispatch => {
12 | return {
13 | addTodo: (todo) => dispatch(actions.addTodo(todo)),
14 | }
15 | }
16 |
17 | export default connect(mapStateToProps, mapDispatchToProps)(Todo)
--------------------------------------------------------------------------------
/Template/SPATemplate/react-redux-todo/src/createStore.js:
--------------------------------------------------------------------------------
1 | import { createStore as reduxCreateStore, applyMiddleware, combineReducers } from "redux";
2 | import logger from "redux-logger";
3 | import { todoReducer } from "./reducers/Todo";
4 |
5 | export default function createStore() {
6 | const store = reduxCreateStore(
7 | combineReducers({
8 | todo: todoReducer,
9 | }),
10 | applyMiddleware(
11 | logger,
12 | )
13 | );
14 |
15 | return store;
16 | }
--------------------------------------------------------------------------------
/Template/SPATemplate/react-redux-todo/src/index.css:
--------------------------------------------------------------------------------
1 | body {
2 | margin: 0;
3 | padding: 0;
4 | font-family: sans-serif;
5 | }
6 |
--------------------------------------------------------------------------------
/Template/SPATemplate/react-redux-todo/src/index.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom';
3 | import './index.css';
4 | import App from './App';
5 | import registerServiceWorker from './registerServiceWorker';
6 |
7 | import { Provider } from 'react-redux';
8 | import createStore from './createStore';
9 |
10 | const store = createStore();
11 |
12 | ReactDOM.render(
13 |
14 |
15 | ,
16 | document.getElementById('root'));
17 | registerServiceWorker();
18 |
--------------------------------------------------------------------------------
/Template/SPATemplate/react-redux-todo/src/reducers/Todo.js:
--------------------------------------------------------------------------------
1 | const initialState = {
2 | todoList: []
3 | }
4 |
5 | export const todoReducer = (state = initialState, action) => {
6 | switch (action.type) {
7 | case 'ADD_TODO':
8 | console.log("reducers/Todo.ADD_TODO.state: " + JSON.stringify(state));
9 |
10 | // 新しく追加するTODO
11 | const todo = action.payload.todo;
12 | // stateを複製して追加
13 | const newState = Object.assign({}, state);
14 | newState.todoList.push(todo);
15 |
16 | console.log("reducers/Todo.ADD_TODO.newState: " + JSON.stringify(newState));
17 |
18 | return newState;
19 | default:
20 | return state;
21 | }
22 | };
--------------------------------------------------------------------------------
/Template/SPATemplate/react_app/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/ignore-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 |
6 | # testing
7 | /coverage
8 |
9 | # production
10 | /build
11 |
12 | # misc
13 | .DS_Store
14 | .env.local
15 | .env.development.local
16 | .env.test.local
17 | .env.production.local
18 |
19 | npm-debug.log*
20 | yarn-debug.log*
21 | yarn-error.log*
22 |
--------------------------------------------------------------------------------
/Template/SPATemplate/react_app/npm_i.bat:
--------------------------------------------------------------------------------
1 | npm i
--------------------------------------------------------------------------------
/Template/SPATemplate/react_app/npm_start.bat:
--------------------------------------------------------------------------------
1 | npm start
--------------------------------------------------------------------------------
/Template/SPATemplate/react_app/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "react_app",
3 | "version": "0.1.0",
4 | "private": true,
5 | "dependencies": {
6 | "react": "^16.3.2",
7 | "react-dom": "^16.3.2",
8 | "react-scripts": "1.1.4"
9 | },
10 | "scripts": {
11 | "start": "react-scripts start",
12 | "build": "react-scripts build",
13 | "test": "react-scripts test --env=jsdom",
14 | "eject": "react-scripts eject"
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/Template/SPATemplate/react_app/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/SPATemplate/react_app/public/favicon.ico
--------------------------------------------------------------------------------
/Template/SPATemplate/react_app/public/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "short_name": "React App",
3 | "name": "Create React App Sample",
4 | "icons": [
5 | {
6 | "src": "favicon.ico",
7 | "sizes": "64x64 32x32 24x24 16x16",
8 | "type": "image/x-icon"
9 | }
10 | ],
11 | "start_url": "./index.html",
12 | "display": "standalone",
13 | "theme_color": "#000000",
14 | "background_color": "#ffffff"
15 | }
16 |
--------------------------------------------------------------------------------
/Template/SPATemplate/react_app/src/App.css:
--------------------------------------------------------------------------------
1 | .App {
2 | text-align: center;
3 | }
4 |
5 | .App-logo {
6 | animation: App-logo-spin infinite 20s linear;
7 | height: 80px;
8 | }
9 |
10 | .App-header {
11 | background-color: #222;
12 | height: 150px;
13 | padding: 20px;
14 | color: white;
15 | }
16 |
17 | .App-title {
18 | font-size: 1.5em;
19 | }
20 |
21 | .App-intro {
22 | font-size: large;
23 | }
24 |
25 | @keyframes App-logo-spin {
26 | from { transform: rotate(0deg); }
27 | to { transform: rotate(360deg); }
28 | }
29 |
--------------------------------------------------------------------------------
/Template/SPATemplate/react_app/src/App.test.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom';
3 | import App from './App';
4 |
5 | it('renders without crashing', () => {
6 | const div = document.createElement('div');
7 | ReactDOM.render(, div);
8 | ReactDOM.unmountComponentAtNode(div);
9 | });
10 |
--------------------------------------------------------------------------------
/Template/SPATemplate/react_app/src/index.css:
--------------------------------------------------------------------------------
1 | body {
2 | margin: 0;
3 | padding: 0;
4 | font-family: sans-serif;
5 | }
6 |
--------------------------------------------------------------------------------
/Template/SPATemplate/react_app/src/index.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom';
3 | import './index.css';
4 | import App from './App';
5 | import registerServiceWorker from './registerServiceWorker';
6 |
7 | ReactDOM.render(, document.getElementById('root'));
8 | registerServiceWorker();
9 |
--------------------------------------------------------------------------------
/Template/SPATemplate/redux_app/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/ignore-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 |
6 | # testing
7 | /coverage
8 |
9 | # production
10 | /build
11 |
12 | # misc
13 | .DS_Store
14 | .env.local
15 | .env.development.local
16 | .env.test.local
17 | .env.production.local
18 |
19 | npm-debug.log*
20 | yarn-debug.log*
21 | yarn-error.log*
22 |
--------------------------------------------------------------------------------
/Template/SPATemplate/redux_app/npm_i.bat:
--------------------------------------------------------------------------------
1 | npm i
--------------------------------------------------------------------------------
/Template/SPATemplate/redux_app/npm_start.bat:
--------------------------------------------------------------------------------
1 | npm start
--------------------------------------------------------------------------------
/Template/SPATemplate/redux_app/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "redux_app",
3 | "version": "0.1.0",
4 | "private": true,
5 | "dependencies": {
6 | "react": "^16.3.2",
7 | "react-dom": "^16.3.2",
8 | "react-redux": "^5.0.7",
9 | "react-scripts": "1.1.4",
10 | "redux": "^4.0.0",
11 | "redux-logger": "^3.0.6"
12 | },
13 | "scripts": {
14 | "start": "react-scripts start",
15 | "build": "react-scripts build",
16 | "test": "react-scripts test --env=jsdom",
17 | "eject": "react-scripts eject"
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/Template/SPATemplate/redux_app/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/Template/SPATemplate/redux_app/public/favicon.ico
--------------------------------------------------------------------------------
/Template/SPATemplate/redux_app/public/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "short_name": "React App",
3 | "name": "Create React App Sample",
4 | "icons": [
5 | {
6 | "src": "favicon.ico",
7 | "sizes": "64x64 32x32 24x24 16x16",
8 | "type": "image/x-icon"
9 | }
10 | ],
11 | "start_url": "./index.html",
12 | "display": "standalone",
13 | "theme_color": "#000000",
14 | "background_color": "#ffffff"
15 | }
16 |
--------------------------------------------------------------------------------
/Template/SPATemplate/redux_app/src/App.css:
--------------------------------------------------------------------------------
1 | .App {
2 | text-align: center;
3 | }
4 |
5 | .App-logo {
6 | animation: App-logo-spin infinite 20s linear;
7 | height: 80px;
8 | }
9 |
10 | .App-header {
11 | background-color: #222;
12 | height: 150px;
13 | padding: 20px;
14 | color: white;
15 | }
16 |
17 | .App-title {
18 | font-size: 1.5em;
19 | }
20 |
21 | .App-intro {
22 | font-size: large;
23 | }
24 |
25 | @keyframes App-logo-spin {
26 | from { transform: rotate(0deg); }
27 | to { transform: rotate(360deg); }
28 | }
29 |
--------------------------------------------------------------------------------
/Template/SPATemplate/redux_app/src/App.test.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom';
3 | import App from './App';
4 |
5 | it('renders without crashing', () => {
6 | const div = document.createElement('div');
7 | ReactDOM.render(, div);
8 | ReactDOM.unmountComponentAtNode(div);
9 | });
10 |
--------------------------------------------------------------------------------
/Template/SPATemplate/redux_app/src/actions/Menu1.js:
--------------------------------------------------------------------------------
1 | export const ADD_MENU1 = (amount) => {
2 | return {
3 | type: 'ADD_MENU1',
4 | payload: {amount : amount}
5 | }
6 | };
--------------------------------------------------------------------------------
/Template/SPATemplate/redux_app/src/actions/Menu12.js:
--------------------------------------------------------------------------------
1 | export const ADD_MENU1 = (amount) => {
2 | return {
3 | type: 'ADD_MENU1',
4 | payload: {amount : amount}
5 | }
6 | };
7 |
8 | export const ADD_MENU2 = (amount) => {
9 | return {
10 | type: 'ADD_MENU2',
11 | payload: {amount : amount}
12 | }
13 | };
14 |
15 | export const ADD_MENU2TO1 = (amount) => {
16 | return {
17 | type: 'ADD_MENU2TO1',
18 | payload: {amount : amount}
19 | }
20 | };
--------------------------------------------------------------------------------
/Template/SPATemplate/redux_app/src/actions/Menu2.js:
--------------------------------------------------------------------------------
1 | export const ADD_MENU2 = (amount) => {
2 | return {
3 | type: 'ADD_MENU2',
4 | payload: {amount : amount}
5 | }
6 | };
--------------------------------------------------------------------------------
/Template/SPATemplate/redux_app/src/components/Hoge.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 |
3 | export default class Hoge extends Component {
4 | // 描画メソッド
5 | render() {
6 | console.log("components/Hoge.props: " + JSON.stringify(this.props));
7 | console.log("components/Hoge.state: " + JSON.stringify(this.state));
8 |
9 | return (
10 | {this.props.fuga}
11 | );
12 | }
13 | }
--------------------------------------------------------------------------------
/Template/SPATemplate/redux_app/src/components/Menu1.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import Hoge from './Hoge';
3 |
4 | export default class Menu1 extends Component {
5 | state = {
6 | name: "芥川龍之介",
7 | book: "杜子春"
8 | };
9 |
10 | // 描画メソッド
11 | render() {
12 | console.log("components/Menu1.props: " + JSON.stringify(this.props));
13 | console.log("components/Menu1.state: " + JSON.stringify(this.state));
14 |
15 | return (
16 |
17 |
ここはMenu1コンポーネントですよ!
18 | 著者: {this.state.name}
19 | 作品: {this.state.book}
20 | カウンタ:
21 |
22 |
23 |
24 | );
25 | }
26 | }
--------------------------------------------------------------------------------
/Template/SPATemplate/redux_app/src/components/Menu2.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 |
3 | export default class Menu2 extends Component {
4 | state = {
5 | name: "芥川龍之介",
6 | book: "杜子春"
7 | };
8 |
9 | // 描画メソッド
10 | render() {
11 | console.log("components/Menu2.props: " + JSON.stringify(this.props));
12 | console.log("components/Menu2.state: " + JSON.stringify(this.state));
13 |
14 | return (
15 |
16 |
ここはMenu2コンポーネントですよ!
17 | 著者: {this.state.name}
18 | 作品: {this.state.book}
19 | カウンタ: {this.props.counter}
20 |
21 |
22 |
23 | );
24 | }
25 | }
--------------------------------------------------------------------------------
/Template/SPATemplate/redux_app/src/containers/Menu1.js:
--------------------------------------------------------------------------------
1 | import { connect } from 'react-redux';
2 | import * as actions from '../actions/Menu1';
3 | import Menu1 from '../components/Menu1';
4 |
5 | const mapStateToProps = state => {
6 | return {
7 | counter: state.Menu1.counter
8 | }
9 | }
10 |
11 | const mapDispatchToProps = dispatch => {
12 | return {
13 | ADD_MENU1: (amount) => dispatch(actions.ADD_MENU1(amount)),
14 | }
15 | }
16 |
17 | export default connect(mapStateToProps, mapDispatchToProps)(Menu1)
--------------------------------------------------------------------------------
/Template/SPATemplate/redux_app/src/containers/Menu2.js:
--------------------------------------------------------------------------------
1 | import { connect } from 'react-redux';
2 | import * as actions from '../actions/Menu2';
3 | import Menu2 from '../components/Menu2';
4 |
5 | const mapStateToProps = state => {
6 | return {
7 | counter: state.Menu2.counter
8 | }
9 | }
10 |
11 | const mapDispatchToProps = dispatch => {
12 | return {
13 | ADD_MENU2: (amount) => dispatch(actions.ADD_MENU2(amount)),
14 | }
15 | }
16 |
17 | export default connect(mapStateToProps, mapDispatchToProps)(Menu2)
--------------------------------------------------------------------------------
/Template/SPATemplate/redux_app/src/createStore.js:
--------------------------------------------------------------------------------
1 | import { createStore as reduxCreateStore, applyMiddleware, combineReducers } from "redux";
2 | import logger from "redux-logger";
3 | //import Menu1Reducer from './reducers/Menu1Reducer';
4 | //import Menu2Reducer from './reducers/Menu2Reducer';
5 | import Menu12Reducer from './reducers/Menu12Reducer';
6 |
7 | export default function createStore() {
8 | const store = reduxCreateStore(
9 | combineReducers({
10 | /*Menu1: Menu1Reducer,
11 | Menu2: Menu2Reducer */
12 | Menu12: Menu12Reducer
13 | }),
14 | applyMiddleware(
15 | logger,
16 | )
17 | );
18 |
19 | return store;
20 | }
--------------------------------------------------------------------------------
/Template/SPATemplate/redux_app/src/index.css:
--------------------------------------------------------------------------------
1 | body {
2 | margin: 0;
3 | padding: 0;
4 | font-family: sans-serif;
5 | }
6 |
--------------------------------------------------------------------------------
/Template/SPATemplate/redux_app/src/index.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom';
3 | import './index.css';
4 | import App from './App';
5 | import registerServiceWorker from './registerServiceWorker';
6 |
7 | import { Provider } from 'react-redux';
8 | import createStore from './createStore';
9 |
10 | const store = createStore();
11 |
12 | // ★★★★★★★★★★
13 | console.log(JSON.stringify(store.getState()));
14 |
15 | ReactDOM.render(
16 |
17 |
18 | ,
19 | document.getElementById('root')
20 | );
21 |
22 | registerServiceWorker();
23 |
--------------------------------------------------------------------------------
/Template/SPATemplate/redux_app/src/reducers/Menu1Reducer.js:
--------------------------------------------------------------------------------
1 | const initialState = {counter: 0};
2 |
3 | const Menu1Reducer = (state = initialState, action) => {
4 |
5 | var newState = null;
6 |
7 | switch (action.type) {
8 |
9 | case 'ADD_MENU1':
10 | console.log("reducers/Menu1Reducer.ADD_MENU1.state: " + JSON.stringify(state));
11 |
12 | // stateを複製してpayloadを処理・追加
13 | newState = Object.assign({}, state);
14 | newState = { counter: state.counter + action.payload.amount };
15 |
16 | console.log("reducers/Menu1Reducer.ADD_MENU1.newState: " + JSON.stringify(newState));
17 |
18 | return newState;
19 |
20 | default:
21 | return state;
22 | }
23 | };
24 |
25 | export default Menu1Reducer;
--------------------------------------------------------------------------------
/Template/SPATemplate/redux_app/src/reducers/Menu2Reducer.js:
--------------------------------------------------------------------------------
1 | const initialState = {counter: 0};
2 |
3 | const Menu2Reducer = (state = initialState, action) => {
4 |
5 | var newState = null;
6 |
7 | switch (action.type) {
8 |
9 | case 'ADD_MENU2':
10 | console.log("reducers/Menu2Reducer.ADD_MENU2.state: " + JSON.stringify(state));
11 |
12 | // stateを複製してpayloadを処理・追加
13 | newState = Object.assign({}, state);
14 | newState = { counter: state.counter + action.payload.amount };
15 |
16 | console.log("reducers/Menu2Reducer.ADD_MENU2.newState: " + JSON.stringify(newState));
17 |
18 | return newState;
19 |
20 | default:
21 | return state;
22 | }
23 | };
24 |
25 | export default Menu2Reducer;
--------------------------------------------------------------------------------
/UISubsystem/WPF/0_Please run with a double-click to build bat file here.txt:
--------------------------------------------------------------------------------
1 | Why not?
2 |
3 | The following files is to delete the folders and files in the current directory.
4 |
5 | - 1_DeleteDir.bat
6 | - 2_DeleteFile.bat
7 |
8 | If you run with a double-click, it is safe this directory becomes the current directory.
9 | Otherwise, it is dangerous there is a possibility to delete folders and files unintended.
--------------------------------------------------------------------------------
/UISubsystem/WPF/2_DeleteFile.bat:
--------------------------------------------------------------------------------
1 | @echo off
2 |
3 | @echo --------------------------------------------------
4 | @echo Delete the suo *.user *.tmp *.bak *.log files.
5 | @echo --------------------------------------------------
6 |
7 | del /f /s /a- *.suo *.user *.tmp *.bak *.log
8 |
9 | @echo --------------------------------------------------
10 | @echo Deleted the suo *.user *.tmp *.bak *.log files.
11 | @echo --------------------------------------------------
12 |
13 | pause
--------------------------------------------------------------------------------
/UISubsystem/WPF/Animation/Menu/App.xaml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Animation/Menu/Menu.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 11.00
3 | # Visual Studio 2010
4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Menu", "Menu.csproj", "{870B8847-60E0-462C-9F61-A72F23D20D4B}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|x86 = Debug|x86
9 | Release|x86 = Release|x86
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {870B8847-60E0-462C-9F61-A72F23D20D4B}.Debug|x86.ActiveCfg = Debug|x86
13 | {870B8847-60E0-462C-9F61-A72F23D20D4B}.Debug|x86.Build.0 = Debug|x86
14 | {870B8847-60E0-462C-9F61-A72F23D20D4B}.Release|x86.ActiveCfg = Release|x86
15 | {870B8847-60E0-462C-9F61-A72F23D20D4B}.Release|x86.Build.0 = Release|x86
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Animation/Menu/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Animation/TimelineAndFrame/App.xaml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Animation/TimelineAndFrame/FrameBaseAnimationWindow.xaml:
--------------------------------------------------------------------------------
1 |
5 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Animation/TimelineAndFrame/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Animation/TimelineAndFrame/TimelineAndFrame.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 11.00
3 | # Visual Studio 2010
4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TimelineAndFrame", "TimelineAndFrame.csproj", "{6912059F-22FF-4F8E-BDE9-C63DE0DDEF1C}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|x86 = Debug|x86
9 | Release|x86 = Release|x86
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {6912059F-22FF-4F8E-BDE9-C63DE0DDEF1C}.Debug|x86.ActiveCfg = Debug|x86
13 | {6912059F-22FF-4F8E-BDE9-C63DE0DDEF1C}.Debug|x86.Build.0 = Debug|x86
14 | {6912059F-22FF-4F8E-BDE9-C63DE0DDEF1C}.Release|x86.ActiveCfg = Release|x86
15 | {6912059F-22FF-4F8E-BDE9-C63DE0DDEF1C}.Release|x86.Build.0 = Release|x86
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Cbx in DataGrid/DataGrid/App.xaml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Cbx in DataGrid/DataGrid/DataGrid.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 11.00
3 | # Visual Studio 2010
4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataGrid", "DataGrid.csproj", "{B601A868-FB74-427D-81F2-CE64A149875C}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|Any CPU = Debug|Any CPU
9 | Release|Any CPU = Release|Any CPU
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {B601A868-FB74-427D-81F2-CE64A149875C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13 | {B601A868-FB74-427D-81F2-CE64A149875C}.Debug|Any CPU.Build.0 = Debug|Any CPU
14 | {B601A868-FB74-427D-81F2-CE64A149875C}.Release|Any CPU.ActiveCfg = Release|Any CPU
15 | {B601A868-FB74-427D-81F2-CE64A149875C}.Release|Any CPU.Build.0 = Release|Any CPU
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Cbx in DataGrid/DataGrid/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Cbx in DataGrid/DataGrid/app.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Cbx in DataGrid/GridView/App.xaml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Cbx in DataGrid/GridView/GridView.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 11.00
3 | # Visual Studio 2010
4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GridView", "GridView.csproj", "{B601A868-FB74-427D-81F2-CE64A149875C}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|Any CPU = Debug|Any CPU
9 | Release|Any CPU = Release|Any CPU
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {B601A868-FB74-427D-81F2-CE64A149875C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13 | {B601A868-FB74-427D-81F2-CE64A149875C}.Debug|Any CPU.Build.0 = Debug|Any CPU
14 | {B601A868-FB74-427D-81F2-CE64A149875C}.Release|Any CPU.ActiveCfg = Release|Any CPU
15 | {B601A868-FB74-427D-81F2-CE64A149875C}.Release|Any CPU.Build.0 = Release|Any CPU
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Cbx in DataGrid/GridView/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/DataBinding/App.xaml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/DataBinding/DataBinding.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 11.00
3 | # Visual Studio 2010
4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataBinding", "DataBinding.csproj", "{9A1C230A-1E86-4BCA-B0C7-36ED3D844A21}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|x86 = Debug|x86
9 | Release|x86 = Release|x86
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {9A1C230A-1E86-4BCA-B0C7-36ED3D844A21}.Debug|x86.ActiveCfg = Debug|x86
13 | {9A1C230A-1E86-4BCA-B0C7-36ED3D844A21}.Debug|x86.Build.0 = Debug|x86
14 | {9A1C230A-1E86-4BCA-B0C7-36ED3D844A21}.Release|x86.ActiveCfg = Release|x86
15 | {9A1C230A-1E86-4BCA-B0C7-36ED3D844A21}.Release|x86.Build.0 = Release|x86
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/DataBinding/MainWindow.xaml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/DataBinding/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/DataBinding/SliderWindow.xaml:
--------------------------------------------------------------------------------
1 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/InputSupport/App.xaml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/InputSupport/InputSupport.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 11.00
3 | # Visual Studio 2010
4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InputSupport", "InputSupport.csproj", "{90EE9F73-F490-4796-AA49-CB75F4D0A7F0}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|x86 = Debug|x86
9 | Release|x86 = Release|x86
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {90EE9F73-F490-4796-AA49-CB75F4D0A7F0}.Debug|x86.ActiveCfg = Debug|x86
13 | {90EE9F73-F490-4796-AA49-CB75F4D0A7F0}.Debug|x86.Build.0 = Debug|x86
14 | {90EE9F73-F490-4796-AA49-CB75F4D0A7F0}.Release|x86.ActiveCfg = Release|x86
15 | {90EE9F73-F490-4796-AA49-CB75F4D0A7F0}.Release|x86.Build.0 = Release|x86
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/InputSupport/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/README.md:
--------------------------------------------------------------------------------
1 | WPFのサンプル集(Sample collection of WPF)
2 | ---
3 |
4 | - DataBinding
5 | -
6 | - Cbx in DataGrid
7 | - DataGrid
8 | - GridView
9 | - Validation
10 | - InputField
11 | - DataGrid
12 | - InputSupport
13 | - Template
14 | - Trigger
15 | - Animation
16 | - Menu
17 | - TimelineAndFrame
18 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Template/App.xaml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Template/MainWindow.xaml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Template/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Template/Template.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 11.00
3 | # Visual Studio 2010
4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Template", "Template.csproj", "{EF133C94-E33A-4AFC-BAD3-72D38798B1A7}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|x86 = Debug|x86
9 | Release|x86 = Release|x86
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {EF133C94-E33A-4AFC-BAD3-72D38798B1A7}.Debug|x86.ActiveCfg = Debug|x86
13 | {EF133C94-E33A-4AFC-BAD3-72D38798B1A7}.Debug|x86.Build.0 = Debug|x86
14 | {EF133C94-E33A-4AFC-BAD3-72D38798B1A7}.Release|x86.ActiveCfg = Release|x86
15 | {EF133C94-E33A-4AFC-BAD3-72D38798B1A7}.Release|x86.Build.0 = Release|x86
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Template/jpg/Blue hills.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/UISubsystem/WPF/Template/jpg/Blue hills.jpg
--------------------------------------------------------------------------------
/UISubsystem/WPF/Template/jpg/Sunset.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/UISubsystem/WPF/Template/jpg/Sunset.jpg
--------------------------------------------------------------------------------
/UISubsystem/WPF/Template/jpg/Water lilies.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/UISubsystem/WPF/Template/jpg/Water lilies.jpg
--------------------------------------------------------------------------------
/UISubsystem/WPF/Template/jpg/Winter.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/UISubsystem/WPF/Template/jpg/Winter.jpg
--------------------------------------------------------------------------------
/UISubsystem/WPF/Trigger/App.xaml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Trigger/MainWindow.xaml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Trigger/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Trigger/Trigger.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 11.00
3 | # Visual Studio 2010
4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Trigger", "Trigger.csproj", "{798E9654-A45A-4499-B063-915283013394}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|x86 = Debug|x86
9 | Release|x86 = Release|x86
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {798E9654-A45A-4499-B063-915283013394}.Debug|x86.ActiveCfg = Debug|x86
13 | {798E9654-A45A-4499-B063-915283013394}.Debug|x86.Build.0 = Debug|x86
14 | {798E9654-A45A-4499-B063-915283013394}.Release|x86.ActiveCfg = Release|x86
15 | {798E9654-A45A-4499-B063-915283013394}.Release|x86.Build.0 = Release|x86
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Trigger/jpg/Blue hills.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/UISubsystem/WPF/Trigger/jpg/Blue hills.jpg
--------------------------------------------------------------------------------
/UISubsystem/WPF/Trigger/jpg/Sunset.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/UISubsystem/WPF/Trigger/jpg/Sunset.jpg
--------------------------------------------------------------------------------
/UISubsystem/WPF/Trigger/jpg/Water lilies.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/UISubsystem/WPF/Trigger/jpg/Water lilies.jpg
--------------------------------------------------------------------------------
/UISubsystem/WPF/Trigger/jpg/Winter.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/UISubsystem/WPF/Trigger/jpg/Winter.jpg
--------------------------------------------------------------------------------
/UISubsystem/WPF/Validation/DataGrid/App.xaml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Validation/DataGrid/DataGrid.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 11.00
3 | # Visual Studio 2010
4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataGrid", "DataGrid.csproj", "{797664B7-C1A5-4655-8FAE-3F31FA31378D}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|x86 = Debug|x86
9 | Release|x86 = Release|x86
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {797664B7-C1A5-4655-8FAE-3F31FA31378D}.Debug|x86.ActiveCfg = Debug|x86
13 | {797664B7-C1A5-4655-8FAE-3F31FA31378D}.Debug|x86.Build.0 = Debug|x86
14 | {797664B7-C1A5-4655-8FAE-3F31FA31378D}.Release|x86.ActiveCfg = Release|x86
15 | {797664B7-C1A5-4655-8FAE-3F31FA31378D}.Release|x86.Build.0 = Release|x86
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Validation/DataGrid/MainWindow.xaml:
--------------------------------------------------------------------------------
1 |
5 |
6 | DataGridのValidationサンプル
7 | フォーカス制御については、いろいろ試しているが問題が多いので使わない方向で考えている。
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Validation/DataGrid/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Validation/InputField/App.xaml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Validation/InputField/InputField.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 11.00
3 | # Visual Studio 2010
4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InputField", "InputField.csproj", "{53637987-DE54-4ED7-928F-82788E26173D}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|Any CPU = Debug|Any CPU
9 | Release|Any CPU = Release|Any CPU
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {53637987-DE54-4ED7-928F-82788E26173D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13 | {53637987-DE54-4ED7-928F-82788E26173D}.Debug|Any CPU.Build.0 = Debug|Any CPU
14 | {53637987-DE54-4ED7-928F-82788E26173D}.Release|Any CPU.ActiveCfg = Release|Any CPU
15 | {53637987-DE54-4ED7-928F-82788E26173D}.Release|Any CPU.Build.0 = Release|Any CPU
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/UISubsystem/WPF/Validation/InputField/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/nuget.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTouryoProject/SampleProgram/9b53109c8870f57444ed55d05a05134e4019d8a7/nuget.exe
--------------------------------------------------------------------------------