Skip to content

Commit 55b4bc1

Browse files
Merge pull request #67 from OpenTouryoProject/develop
Fixed : "To merge the changes ( - Until March 31)." #66
2 parents 2aba5e6 + 84edb66 commit 55b4bc1

File tree

13,340 files changed

+517771
-2246663
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

13,340 files changed

+517771
-2246663
lines changed

.gitignore

Lines changed: 133 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,39 @@
1-
# Created by http://www.gitignore.io
2-
3-
### VisualStudio ###
41
## Ignore Visual Studio temporary files, build results, and
52
## files generated by popular Visual Studio add-ons.
3+
##
4+
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
65

76
# User-specific files
87
*.suo
98
*.user
9+
*.userosscache
1010
*.sln.docstates
1111

12+
# User-specific files (MonoDevelop/Xamarin Studio)
13+
*.userprefs
14+
1215
# Build results
1316
[Dd]ebug/
1417
[Dd]ebugPublic/
1518
[Rr]elease/
19+
[Rr]eleases/
1620
x64/
17-
build/
21+
x86/
1822
bld/
1923
[Bb]in/
2024
[Oo]bj/
25+
[Ll]og/
2126

22-
# Roslyn cache directories
23-
*.ide
27+
# Visual Studio 2015 cache/options directory
28+
.vs/
29+
# Uncomment if you have tasks that create the project's static files in wwwroot
30+
#wwwroot/
2431

2532
# MSTest test Results
2633
[Tt]est[Rr]esult*/
2734
[Bb]uild[Ll]og.*
2835

29-
#NUNIT
36+
# NUNIT
3037
*.VisualState.xml
3138
TestResult.xml
3239

@@ -35,6 +42,12 @@ TestResult.xml
3542
[Rr]eleasePS/
3643
dlldata.c
3744

45+
# .NET Core
46+
project.lock.json
47+
project.fragment.lock.json
48+
artifacts/
49+
**/Properties/launchSettings.json
50+
3851
*_i.c
3952
*_p.c
4053
*_i.h
@@ -67,14 +80,18 @@ _Chutzpah*
6780
ipch/
6881
*.aps
6982
*.ncb
83+
*.opendb
7084
*.opensdf
7185
*.sdf
7286
*.cachefile
87+
*.VC.db
88+
*.VC.VC.opendb
7389

7490
# Visual Studio profiler
7591
*.psess
7692
*.vsp
7793
*.vspx
94+
*.sap
7895

7996
# TFS 2012 Local Workspace
8097
$tf/
@@ -87,7 +104,7 @@ _ReSharper*/
87104
*.[Rr]e[Ss]harper
88105
*.DotSettings.user
89106

90-
# JustCode is a .NET coding addin-in
107+
# JustCode is a .NET coding add-in
91108
.JustCode
92109

93110
# TeamCity is a build add-in
@@ -96,9 +113,14 @@ _TeamCity*
96113
# DotCover is a Code Coverage Tool
97114
*.dotCover
98115

116+
# Visual Studio code coverage results
117+
*.coverage
118+
*.coveragexml
119+
99120
# NCrunch
100121
_NCrunch_*
101122
.*crunch*.local.xml
123+
nCrunchTemp_*
102124

103125
# MightyMoose
104126
*.mm.*
@@ -126,42 +148,69 @@ publish/
126148
# Publish Web Output
127149
*.[Pp]ublish.xml
128150
*.azurePubxml
129-
## TODO: Comment the next line if you want to checkin your web deploy settings but do note that will include unencrypted passwords
151+
# TODO: Comment the next line if you want to checkin your web deploy settings
152+
# but database connection strings (with potential passwords) will be unencrypted
130153
*.pubxml
131-
132-
# NuGet Packages Directory
133-
packages/*
134-
## TODO: If the tool you use requires repositories.config uncomment the next line
135-
#!packages/repositories.config
136-
137-
# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
138-
# This line needs to be after the ignore of the build folder (and the packages folder if the line above has been uncommented)
139-
!packages/build/
140-
141-
# Windows Azure Build Output
154+
*.publishproj
155+
156+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
157+
# checkin your Azure Web App publish settings, but sensitive information contained
158+
# in these scripts will be unencrypted
159+
PublishScripts/
160+
161+
# NuGet Packages
162+
*.nupkg
163+
# The packages folder can be ignored because of Package Restore
164+
**/packages/*
165+
# except build/, which is used as an MSBuild target.
166+
!**/packages/build/
167+
# Uncomment if necessary however generally it will be regenerated when needed
168+
#!**/packages/repositories.config
169+
# NuGet v3's project.json files produces more ignorable files
170+
*.nuget.props
171+
*.nuget.targets
172+
173+
# Microsoft Azure Build Output
142174
csx/
143175
*.build.csdef
144176

145-
# Windows Store app package directory
177+
# Microsoft Azure Emulator
178+
ecf/
179+
rcf/
180+
181+
# Windows Store app package directories and files
146182
AppPackages/
183+
BundleArtifacts/
184+
Package.StoreAssociation.xml
185+
_pkginfo.txt
186+
187+
# Visual Studio cache files
188+
# files ending in .cache can be ignored
189+
*.[Cc]ache
190+
# but keep track of directories ending in .cache
191+
!*.[Cc]ache/
147192

148193
# Others
149-
*.Cache
150194
ClientBin/
151-
[Ss]tyle[Cc]op.*
152195
~$*
153196
*~
154197
*.dbmdl
155198
*.dbproj.schemaview
199+
*.jfm
156200
*.pfx
157201
*.publishsettings
158-
node_modules/
202+
orleans.codegen.cs
203+
204+
# Since there are multiple workflows, uncomment next line to ignore bower_components
205+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
206+
#bower_components/
159207

160208
# RIA/Silverlight projects
161209
Generated_Code/
162210

163-
# Backup & report files from converting an old project file to a newer
164-
# Visual Studio version. Backup files are not needed, because we have git ;-)
211+
# Backup & report files from converting an old project file
212+
# to a newer Visual Studio version. Backup files are not needed,
213+
# because we have git ;-)
165214
_UpgradeReport_Files/
166215
Backup*/
167216
UpgradeLog*.XML
@@ -170,6 +219,7 @@ UpgradeLog*.htm
170219
# SQL Server files
171220
*.mdf
172221
*.ldf
222+
*.ndf
173223

174224
# Business Intelligence projects
175225
*.rdl.data
@@ -179,15 +229,60 @@ UpgradeLog*.htm
179229
# Microsoft Fakes
180230
FakesAssemblies/
181231

182-
/root_VS2010/programs/C#/Frameworks/PortableClassLibrary/PCLBusiness/bin/Debug/PCLBusiness.dll
183-
/root_VS2010/programs/C#/Frameworks/PortableClassLibrary/PCLFramework/bin/Debug/PCLFramework.dll
184-
/root_VS2010/programs/C#/Frameworks/PortableClassLibrary/PCLPublic/bin/Debug/PCLPublic.dll
185-
/root_VS2012/programs/C#/Frameworks/PortableClassLibrary/PCLBusiness/bin/Debug/PCLBusiness.dll
186-
/root_VS2012/programs/C#/Frameworks/PortableClassLibrary/PCLFramework/bin/Debug/PCLFramework.dll
187-
/root_VS2012/programs/C#/Frameworks/PortableClassLibrary/PCLPublic/bin/Debug/PCLPublic.dll
188-
/root_VS2013/programs/C#/Frameworks/PortableClassLibrary/PCLBusiness/bin/Debug/PCLBusiness.dll
189-
/root_VS2013/programs/C#/Frameworks/PortableClassLibrary/PCLFramework/bin/Debug/PCLFramework.dll
190-
/root_VS2013/programs/C#/Frameworks/PortableClassLibrary/PCLPublic/bin/Debug/PCLPublic.dll
191-
/root_VS2015/programs/C#/Samples/WinAzure_sample/packages/Microsoft.WindowsAzure.ConfigurationManager.1.7.0.0/Microsoft.WindowsAzure.ConfigurationManager.1.7.0.0.nupkg
192-
/root_VS2015/programs/C#/Samples/WinAzure_sample/packages/Microsoft.WindowsAzure.ConfigurationManager.1.7.0.0/\[Content_Types\].xml
193-
/root_VS2015/programs/C#/Samples/WinAzure_sample/packages/Microsoft.WindowsAzure.ConfigurationManager.1.7.0.0/lib/net35-full/Microsoft.WindowsAzure.Configuration.dll
232+
# GhostDoc plugin setting file
233+
*.GhostDoc.xml
234+
235+
# Node.js Tools for Visual Studio
236+
.ntvs_analysis.dat
237+
node_modules/
238+
239+
# Typescript v1 declaration files
240+
typings/
241+
242+
# Visual Studio 6 build log
243+
*.plg
244+
245+
# Visual Studio 6 workspace options file
246+
*.opt
247+
248+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
249+
*.vbw
250+
251+
# Visual Studio LightSwitch build output
252+
**/*.HTMLClient/GeneratedArtifacts
253+
**/*.DesktopClient/GeneratedArtifacts
254+
**/*.DesktopClient/ModelManifest.xml
255+
**/*.Server/GeneratedArtifacts
256+
**/*.Server/ModelManifest.xml
257+
_Pvt_Extensions
258+
259+
# Paket dependency manager
260+
.paket/paket.exe
261+
paket-files/
262+
263+
# FAKE - F# Make
264+
.fake/
265+
266+
# JetBrains Rider
267+
.idea/
268+
*.sln.iml
269+
270+
# CodeRush
271+
.cr/
272+
273+
# Python Tools for Visual Studio (PTVS)
274+
__pycache__/
275+
*.pyc
276+
277+
# Cake - Uncomment if you are using it
278+
# tools/**
279+
# !tools/packages.config
280+
281+
# Telerik's JustMock configuration file
282+
*.jmconfig
283+
284+
# BizTalk build output
285+
*.btp.cs
286+
*.btm.cs
287+
*.odx.cs
288+
*.xsd.cs

README.md

Lines changed: 11 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,20 @@
1-
#Open棟梁(OpenTouryo)
1+
# OpenTouryo
2+
*OpenTouryo* is an application framework for .NET Framework which was developed using the accumulated know-how with a long track record in .NET application development.
23

3-
"Open棟梁" は、長年の.NETアプリケーション開発実績にて蓄積したノウハウに基づき開発した.NET Framework用アプリケーション フレームワークです。
4-
("OpenTouryo" is an application framework for .NET Framework which was developed using the accumulated know-how with a long track record in .NET application development.)
5-
6-
テンプレート・ベースに同梱されるサンプルはOpen棟梁の評価に利用できます。
7-
また、テンプレート・ベースをチュートリアルの内容に従いカスタマイズすることで
8-
当該Visual Studioバージョンの案件向けプロジェクト・テンプレートを作成できます。
9-
(You can see what OpenTouryo is according to template-base.
4+
You can see what OpenTouryo is according to template-base.
105
Further, you can create the "project template" using proper version of Visual Studio.
11-
Tutorial will be helpful to you for customizing template-base!)
12-
13-
詳しくは、各フォルダのReadmeをご参照ください。
14-
(For more information, please refer to the Readme in each root_VS20XX folder.)
6+
Tutorial will be helpful to you for customizing template-base!
157

16-
## 内容物(contents)
8+
For more information, please refer to the Readme in each root_VS20XX folder.
179

18-
### [/license/](https://github.com/OpenTouryoProject/OpenTouryoTemplates/tree/master/license)
19-
ライセンス(license)
10+
## contents
2011

21-
### テンプレート・ベース(Template-base)
12+
### license
13+
[/license/](https://github.com/OpenTouryoProject/OpenTouryoTemplates/tree/master/license)
2214

15+
### Template-base
2316
|Template-base|Develop Environment|Run-time Environment|
2417
|:-----|:------------------|:-------------------|
25-
|[/root_VS2010/](https://github.com/OpenTouryoProject/OpenTouryoTemplates/tree/master/root_VS2010)|Visual Studio 2010|.NET Framework 3.5 SP1|
26-
|[/root_VS2012/](https://github.com/OpenTouryoProject/OpenTouryoTemplates/tree/master/root_VS2012)|Visual Studio 2012|.NET Framework 4.5|
27-
|[/root_VS2013/](https://github.com/OpenTouryoProject/OpenTouryoTemplates/tree/master/root_VS2013)|Visual Studio 2013|.NET Framework 4.5.1|
2818
|[/root_VS2015/](https://github.com/OpenTouryoProject/OpenTouryoTemplates/tree/master/root_VS2015)|Visual Studio 2015|.NET Framework 4.6|
19+
20+
When using Visual Studio 2013 or earlier, please use *[OpenTouryoTemplates version 01-80](https://github.com/OpenTouryoProject/OpenTouryoTemplates/tree/01-80)*.

Readme.ja.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Open棟梁
2+
**Open棟梁** は、長年の.NETアプリケーション開発実績にて蓄積したノウハウに基づき開発した.NET Framework用アプリケーション フレームワークです。
3+
4+
テンプレート・ベースに同梱されるサンプルはOpen棟梁の評価に利用できます。
5+
また、テンプレート・ベースをチュートリアルの内容に従いカスタマイズすることで
6+
当該Visual Studioバージョンの案件向けプロジェクト・テンプレートを作成できます。
7+
8+
詳しくは、各フォルダのReadmeをご参照ください。
9+
10+
## 内容物
11+
12+
### ライセンス
13+
[/license/](https://github.com/OpenTouryoProject/OpenTouryoTemplates/tree/master/license)
14+
15+
### テンプレート・ベース
16+
17+
|Template-base|Develop Environment|Run-time Environment|
18+
|:-----|:------------------|:-------------------|
19+
|[/root_VS2015/](https://github.com/OpenTouryoProject/OpenTouryoTemplates/tree/master/root_VS2015)|Visual Studio 2015|.NET Framework 4.6|
20+
21+
Visual Studio 2013以前を使用する場合は、*[OpenTouryoTemplates バージョン 01-80](https://github.com/OpenTouryoProject/OpenTouryoTemplates/tree/01-80)*を使用してください。

0 commit comments

Comments
 (0)