-
[WPF] WPF .exe App HostingC#/WPF 2024. 11. 6. 10:05
https://benstagram.tistory.com/117 [WPF] Application Hostingusing System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Dabenstagram.tistory.com https://stackoverflow.com/questions/4135891/hosting-wpf-ap..
-
[기타자료] 빅뱅이론 대본 사이트카테고리 없음 2024. 11. 2. 12:59
https://bigbangtrans.wordpress.com/series-1-episode-1-pilot-episode/ Series 01 Episode 01 – Pilot EpisodeScene: A corridor at a sperm bank. Sheldon: So if a photon is directed through a plane with two slits in it and either slit is observed it will not go through both slits. If it’s unobserved it will…bigbangtrans.wordpress.com
-
-
[WPF] Build 시 폴더 OutDir 복사C#/WPF 2024. 10. 29. 14:49
..\Executes 폴더 안의 폴더를 실행 파일 폴더의 Executes 폴더로 복사 https://github.com/dotnet/msbuild/issues/2795 Allow CopyToOutputDirectory to have a custom destination path · Issue #2795 · dotnet/msbuildThe destination of CopyToOutputDirectory attribute in msbuild is fixed, there are various questions about how to change the destination path: https://stackoverflow.com/questions/10204370/can-i-spec...githu..
-
[WPF] PropertyGroupC#/WPF 2024. 10. 28. 08:22
EX) false false $(OutputPath)\debug EX) AnyCPU true full false bin\Debug\ DEBUG;TRACE prompt 4 AnyCPU pdbonly true bin\Release\ TRACE prompt 4 https://learn.microsoft.com/ko-kr/visualstudio/msbuild/propertygroup-element-msbuild?view=vs-2022 PropertyGroup 요소(MSBuild) - MSBuild사용자 정의 속성 요소 집합을 포함하는 MSBuild PropertyGroup 요소에 대해 알아봅니다.learn.microsoft.com https://aakinshin.ne..
-
[WPF] Get Solution DirectoryC#/WPF 2024. 10. 17. 15:45
public static class VisualStudioProvider{ public static DirectoryInfo TryGetSolutionDirectoryInfo(string currentPath = null) { var directory = new DirectoryInfo( currentPath ?? Directory.GetCurrentDirectory()); while (directory != null && !directory.GetFiles("*.sln").Any()) { directory = directory.Parent; } return directory; }} /..