fix files
This commit is contained in:
52
.gitattributes
vendored
52
.gitattributes
vendored
@@ -10,7 +10,7 @@
|
|||||||
# default for csharp files.
|
# default for csharp files.
|
||||||
# Note: This is only used by command line
|
# Note: This is only used by command line
|
||||||
###############################################################################
|
###############################################################################
|
||||||
#*.cs diff=csharp
|
*.cs diff=csharp
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Set the merge driver for project and solution files
|
# Set the merge driver for project and solution files
|
||||||
@@ -22,27 +22,27 @@
|
|||||||
# these files as binary and thus will always conflict and require user
|
# these files as binary and thus will always conflict and require user
|
||||||
# intervention with every merge. To do so, just uncomment the entries below
|
# intervention with every merge. To do so, just uncomment the entries below
|
||||||
###############################################################################
|
###############################################################################
|
||||||
#*.sln merge=binary
|
*.sln merge=binary
|
||||||
#*.csproj merge=binary
|
*.csproj merge=binary
|
||||||
#*.vbproj merge=binary
|
*.vbproj merge=binary
|
||||||
#*.vcxproj merge=binary
|
*.vcxproj merge=binary
|
||||||
#*.vcproj merge=binary
|
*.vcproj merge=binary
|
||||||
#*.dbproj merge=binary
|
*.dbproj merge=binary
|
||||||
#*.fsproj merge=binary
|
*.fsproj merge=binary
|
||||||
#*.lsproj merge=binary
|
*.lsproj merge=binary
|
||||||
#*.wixproj merge=binary
|
*.wixproj merge=binary
|
||||||
#*.modelproj merge=binary
|
*.modelproj merge=binary
|
||||||
#*.sqlproj merge=binary
|
*.sqlproj merge=binary
|
||||||
#*.wwaproj merge=binary
|
*.wwaproj merge=binary
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# behavior for image files
|
# behavior for image files
|
||||||
#
|
#
|
||||||
# image files are treated as binary by default.
|
# image files are treated as binary by default.
|
||||||
###############################################################################
|
###############################################################################
|
||||||
#*.jpg binary
|
*.jpg binary
|
||||||
#*.png binary
|
*.png binary
|
||||||
#*.gif binary
|
*.gif binary
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# diff behavior for common document formats
|
# diff behavior for common document formats
|
||||||
@@ -51,13 +51,13 @@
|
|||||||
# is only available from the command line. Turn it on by uncommenting the
|
# is only available from the command line. Turn it on by uncommenting the
|
||||||
# entries below.
|
# entries below.
|
||||||
###############################################################################
|
###############################################################################
|
||||||
#*.doc diff=astextplain
|
*.doc diff=astextplain
|
||||||
#*.DOC diff=astextplain
|
*.DOC diff=astextplain
|
||||||
#*.docx diff=astextplain
|
*.docx diff=astextplain
|
||||||
#*.DOCX diff=astextplain
|
*.DOCX diff=astextplain
|
||||||
#*.dot diff=astextplain
|
*.dot diff=astextplain
|
||||||
#*.DOT diff=astextplain
|
*.DOT diff=astextplain
|
||||||
#*.pdf diff=astextplain
|
*.pdf diff=astextplain
|
||||||
#*.PDF diff=astextplain
|
*.PDF diff=astextplain
|
||||||
#*.rtf diff=astextplain
|
*.rtf diff=astextplain
|
||||||
#*.RTF diff=astextplain
|
*.RTF diff=astextplain
|
||||||
|
|||||||
181
.gitignore
vendored
181
.gitignore
vendored
@@ -21,6 +21,7 @@ bld/
|
|||||||
[Bb]in/
|
[Bb]in/
|
||||||
[Oo]bj/
|
[Oo]bj/
|
||||||
[Ll]og/
|
[Ll]og/
|
||||||
|
[Bb]uild/
|
||||||
|
|
||||||
# Visual Studio 2015 cache/options directory
|
# Visual Studio 2015 cache/options directory
|
||||||
.vs/
|
.vs/
|
||||||
@@ -171,6 +172,9 @@ csx/
|
|||||||
ecf/
|
ecf/
|
||||||
rcf/
|
rcf/
|
||||||
|
|
||||||
|
# Microsoft Azure ApplicationInsights config file
|
||||||
|
ApplicationInsights.config
|
||||||
|
|
||||||
# Windows Store app package directories and files
|
# Windows Store app package directories and files
|
||||||
AppPackages/
|
AppPackages/
|
||||||
BundleArtifacts/
|
BundleArtifacts/
|
||||||
@@ -187,6 +191,7 @@ _pkginfo.txt
|
|||||||
ClientBin/
|
ClientBin/
|
||||||
~$*
|
~$*
|
||||||
*~
|
*~
|
||||||
|
.*.swp
|
||||||
*.dbmdl
|
*.dbmdl
|
||||||
*.dbproj.schemaview
|
*.dbproj.schemaview
|
||||||
*.jfm
|
*.jfm
|
||||||
@@ -256,6 +261,178 @@ paket-files/
|
|||||||
# CodeRush
|
# CodeRush
|
||||||
.cr/
|
.cr/
|
||||||
|
|
||||||
# Python Tools for Visual Studio (PTVS)
|
# Compiled Object files
|
||||||
|
*.slo
|
||||||
|
*.lo
|
||||||
|
*.o
|
||||||
|
*.obj
|
||||||
|
|
||||||
|
# Precompiled Headers
|
||||||
|
*.gch
|
||||||
|
*.pch
|
||||||
|
|
||||||
|
# Compiled Dynamic libraries
|
||||||
|
*.so
|
||||||
|
*.dylib
|
||||||
|
*.dll
|
||||||
|
|
||||||
|
# Fortran module files
|
||||||
|
*.mod
|
||||||
|
|
||||||
|
# Compiled Static libraries
|
||||||
|
*.lai
|
||||||
|
*.la
|
||||||
|
*.a
|
||||||
|
*.lib
|
||||||
|
|
||||||
|
# Executables
|
||||||
|
*.exe
|
||||||
|
*.out
|
||||||
|
*.app
|
||||||
|
/windows/LightGBM.VC.db
|
||||||
|
lightgbm
|
||||||
|
|
||||||
|
# Created by https://www.gitignore.io/api/python
|
||||||
|
|
||||||
|
### Python ###
|
||||||
|
!/python-package/lightgbm/
|
||||||
|
|
||||||
|
# Byte-compiled / optimized / DLL files
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.pyc
|
*.py[cod]
|
||||||
|
*$py.class
|
||||||
|
|
||||||
|
# C extensions
|
||||||
|
*.so
|
||||||
|
|
||||||
|
# Distribution / packaging
|
||||||
|
.Python
|
||||||
|
env/
|
||||||
|
build/
|
||||||
|
develop-eggs/
|
||||||
|
dist/
|
||||||
|
downloads/
|
||||||
|
eggs/
|
||||||
|
.eggs/
|
||||||
|
lib/
|
||||||
|
lib64/
|
||||||
|
parts/
|
||||||
|
sdist/
|
||||||
|
var/
|
||||||
|
*.egg-info/
|
||||||
|
.installed.cfg
|
||||||
|
*.egg
|
||||||
|
|
||||||
|
# PyInstaller
|
||||||
|
# Usually these files are written by a python script from a template
|
||||||
|
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
||||||
|
*.manifest
|
||||||
|
*.spec
|
||||||
|
|
||||||
|
# Installer logs
|
||||||
|
pip-log.txt
|
||||||
|
pip-delete-this-directory.txt
|
||||||
|
|
||||||
|
# Unit test / coverage reports
|
||||||
|
htmlcov/
|
||||||
|
.tox/
|
||||||
|
.coverage
|
||||||
|
.coverage.*
|
||||||
|
.cache
|
||||||
|
nosetests.xml
|
||||||
|
coverage.xml
|
||||||
|
*,cover
|
||||||
|
.hypothesis/
|
||||||
|
**/coverage.html
|
||||||
|
**/coverage.html.zip
|
||||||
|
R-package/tests/testthat/Rplots.pdf
|
||||||
|
|
||||||
|
# Translations
|
||||||
|
*.mo
|
||||||
|
*.pot
|
||||||
|
|
||||||
|
# Django stuff:
|
||||||
|
*.log
|
||||||
|
local_settings.py
|
||||||
|
|
||||||
|
# Flask stuff:
|
||||||
|
instance/
|
||||||
|
.webassets-cache
|
||||||
|
|
||||||
|
# Scrapy stuff:
|
||||||
|
.scrapy
|
||||||
|
|
||||||
|
# Sphinx documentation
|
||||||
|
docs/_build/
|
||||||
|
docs/pythonapi/
|
||||||
|
|
||||||
|
# Doxygen documentation
|
||||||
|
docs/doxyoutput/
|
||||||
|
|
||||||
|
# PyBuilder
|
||||||
|
target/
|
||||||
|
|
||||||
|
# Jupyter Notebook
|
||||||
|
.ipynb_checkpoints
|
||||||
|
|
||||||
|
# pyenv
|
||||||
|
.python-version
|
||||||
|
|
||||||
|
# celery beat schedule file
|
||||||
|
celerybeat-schedule
|
||||||
|
|
||||||
|
# dotenv
|
||||||
|
.env
|
||||||
|
|
||||||
|
# virtualenv
|
||||||
|
.venv/
|
||||||
|
venv/
|
||||||
|
ENV/
|
||||||
|
|
||||||
|
# Spyder project settings
|
||||||
|
.spyderproject
|
||||||
|
|
||||||
|
# Rope project settings
|
||||||
|
.ropeproject
|
||||||
|
|
||||||
|
# R testing artefact
|
||||||
|
lightgbm.model
|
||||||
|
|
||||||
|
# saved or dumped model/data
|
||||||
|
*.model
|
||||||
|
*.pkl
|
||||||
|
*.bin
|
||||||
|
|
||||||
|
# macOS
|
||||||
|
**/.DS_Store
|
||||||
|
|
||||||
|
# VSCode
|
||||||
|
.vscode
|
||||||
|
|
||||||
|
# IntelliJ IDEA
|
||||||
|
.idea/
|
||||||
|
|
||||||
|
# Files from local Python install
|
||||||
|
python-package/LICENSE
|
||||||
|
python-package/build_cpp/
|
||||||
|
python-package/compile/
|
||||||
|
python-package/lightgbm/VERSION.txt
|
||||||
|
|
||||||
|
# R build artefacts
|
||||||
|
R-package/src/CMakeLists.txt
|
||||||
|
R-package/src/lib_lightgbm.so.dSYM/
|
||||||
|
R-package/src/src/
|
||||||
|
lightgbm_r/*
|
||||||
|
lightgbm*.tar.gz
|
||||||
|
lightgbm.Rcheck/
|
||||||
|
|
||||||
|
# Files from interactive R sessions
|
||||||
|
.Rproj.user
|
||||||
|
**/.Rhistory
|
||||||
|
|
||||||
|
# Files generated by aspell
|
||||||
|
**/*.bak
|
||||||
|
|
||||||
|
# GraphViz artifacts
|
||||||
|
*.gv
|
||||||
|
*.gv.*
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
// resource.h
|
// resource.h
|
||||||
#define IDS_APP_TITLE 100
|
#define IDS_APP_TITLE 100
|
||||||
#define IDS_CLASSNAME 101
|
#define IDS_CLASSNAME 101
|
||||||
#define IDS_HELPTEXT 102
|
#define IDS_HELPTEXT 102
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
// header.h: включаемый файл для стандартных системных включаемых файлов
|
// header.h: включаемый файл для стандартных системных включаемых файлов
|
||||||
// или включаемые файлы для конкретного проекта
|
// или включаемые файлы для конкретного проекта
|
||||||
//
|
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "targetver.h"
|
#include "targetver.h"
|
||||||
|
|||||||
@@ -1,6 +1,2 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
// // При включении SDKDDKVer.h будет задана самая новая из доступных платформ Windows.
|
|
||||||
// Если вы планируете сборку приложения для предыдущей версии платформы Windows, включите WinSDKVer.h и
|
|
||||||
// задайте желаемую платформу в макросе _WIN32_WINNT, прежде чем включать SDKDDKVer.h.
|
|
||||||
#include <SDKDDKVer.h>
|
#include <SDKDDKVer.h>
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
// wCenterWindow.cpp : Определяет точку входа для приложения.
|
// wCenterWindow.cpp : Определяет точку входа для приложения.
|
||||||
//
|
|
||||||
|
|
||||||
#include "framework.h"
|
#include "framework.h"
|
||||||
#include "wCenterWindow.h"
|
#include "wCenterWindow.h"
|
||||||
|
|||||||
@@ -1,3 +1,2 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "resource.h"
|
#include "resource.h"
|
||||||
|
|||||||
Binary file not shown.
Reference in New Issue
Block a user