Skip to content

Latest commit

 

History

History
61 lines (53 loc) · 2.48 KB

1026.md

File metadata and controls

61 lines (53 loc) · 2.48 KB

2023 10월 26일 WPF 밋업


소개


WPF 프로젝트 리더를 위한 특별한 기술

  • 아키텍처 설계는 프로젝트 성공의 가장 중요한 키포인트
    • 프로젝트 종류와 역할 분담
    • 리소스 체계 이해하기
    • 프로젝트 모듈화(유연성)
  • 종속성 관리를 확실하게 이해하기
    • 코어/프레임워크 간의 방식 차이
    • 참조 전략 (공용 라이브러리)
  • NuGet(누겟) 패키지의 개념을 확실하게 이해하기
    • NuGet의 버전 관리 체계 이해하기
    • 멀티 타겟팅 배포하기
<PropertyGroup>
  <TargetFrameworks>net461;net47;net48;net6.0-windows;net7.0-windows</TargetFrameworks>
  <Nullable>disable</Nullable>
  <UseWPF>true</UseWPF>
  <Version>1.0.0.78</Version>
  <Authors>jamesnet, lukewire, vickyqu</Authors>
  <Product>jamesnet</Product>
  <Copyright>jamesnet</Copyright>
  <PackageProjectUrl>https://github.com/jamesnet214</PackageProjectUrl>
  <RepositoryUrl>https://github.com/jamesnet214</RepositoryUrl>
  <RepositoryType>git</RepositoryType>
  <PackageTags>jamesnet,wpf</PackageTags>
  <Description>Wpf Support</Description>
  <PackageIcon>logo.png</PackageIcon>
  <SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
</PropertyGroup>



<ItemGroup>
  <None Include="Resources\logo.png" Pack="true" PackagePath="" />
</ItemGroup>