분류 전체보기(148)
-
DevExpress.Document.Processor nuget package not found
Excel 형식의 파일을 생성하기 위해서 devexpress 에서 제공하는 API를 사용하였다. local에서는 되는데 Build Server에서 Build하려니깐 error 가 발생하였다. 그래서 구글링을 해봤다. Devexpress Support Center NuGet Package DevExpress.Document.Processor Appears to be Missing for WinForms Subscription You have yet to view any tickets. Your search criteria do not match any tickets. A server error occurred while processing your request. Please try again at a l..
2023.01.16 -
Dart VSCode 실행
Dart를 VSCode로 실행할 때 삽질을 많이 해서 정리한다. 0. DartPad 그전에 Dart는 Web IDE를 제공한다. DartPad DartPad dartpad.dev 하지만 나는 VSCode에서 Dart를 실행하고 싶다. 1. Dart SDK 설치 일단 Dart SDK(SoftWare Development Kit : 내 PC에서 Dart를 실행하는데 필요한 것들을 모아둔 개발 도구들) 설치가 필요하다. 공식 Dart install page Get the Dart SDK Get the libraries and command-line tools that you need to develop Dart web, command-line, and server apps. dart.dev Dart SDK를 ..
2023.01.13 -
Flutter가 Dart를 쓰는 이유?
Flutter가 Dart를 쓰는 이유가 뭘까? 참고 Dart overview A short introduction to Dart dart.dev Flutter란? The Flutter framework is a popular, multi-platform UI toolkit that’s powered by the Dart platform, and that provides tooling and UI libraries to build UI experiences that run on iOS, Android, macOS, Windows, Linux, and the web. (Flutter 프레임워크는 인기 있는 다중 플랫폼 UI 툴킷으로 Dart 플랫폼으로 구동되며 iOS, Android, macOS, Windo..
2023.01.11 -
Dart란?
Dart 언어? 참고 Dart overview A short introduction to Dart dart.dev 특징 1 Dart is a client-optimized language for developing fast apps on any platform. (Dart는 모든 플랫폼에서 빠른 앱을 개발하기 위한 클라이언트 최적화 언어입니다.) 즉, 모든 CPU 아키텍처 (Windows, MacOS, iOS, Linux and Web 등)에서 컴파일 가능한 언어이다. 특징 2 Dart Native (machine code JIT and AOT) During development, a fast developer cycle is critical for iteration. The Dart VM offers ..
2023.01.10 -
XML Schema Definition Tool (Xsd.exe) 사용
스키마를 클래스로 변환하는 프로젝트를 실습해볼 것이다. 프로젝트 생성 -> 새프로젝트 만들기 콘솔 애플리케이션 선택 새 프로젝트 구성 추가 정보 -> 만들기 프로젝트 -> 추가 -> 새 항목 XML 스키마 선택 - 추가 XML 편집기 사용하여 기존 XML 스키마 파일 표시 및 편집 클릭 샘플 xsd 파일 복사 샘플 XSD 파일: 단순한 스키마 - Visual Studio (Windows) XSD 스키마 디자이너 설명서의 다양한 예제에서 사용되는 간단한 구매 주문 스키마에 대한 샘플 XSD 파일을 봅니다. learn.microsoft.com 보기 -> 터미널 클릭 xsd /c /l:CS /n:XsdTest XMLSchema1.xsd 참고 XML Schema Definition Tool (Xsd.exe) T..
2023.01.07 -
warning CA1416: 이 호출 사이트에는 모든 플랫폼에서 연결할 수 있습니다.
요즘 코드를 리펙터링하는 중이다. WARNING 잡는 작업을 하고 있는데 에러가 발생했다. 참고 CA1416: 플랫폼 호환성 유효성 검사(코드 분석) - .NET 코드 분석 규칙 CA1416: 플랫폼 호환성 유효성 검사에 대해 알아봅니다. learn.microsoft.com 해결방법은 간단하다. 경고를 안나오게 하면 된다. #Pragma 사이에 코드를 넣으면 된다.
2023.01.06