코딩/Visual Studio2017. 11. 10. 07:34

Visual Studio에서 빈 솔루션 생성하는 방법입니다. (VS 2015)


빈번하게 만들지 않기 때문에 한번 만들려면 찾아 헤매는 경우가 있어 기록해둡니다.


"새 프로젝트 -> 설치됨 -> 템플릿 -> 기타 프로젝트 형식 -> Visual Studio 솔루션" 입니다.


Although a project must reside in a solution, you can create a solution that has no projects.

To create an empty solution

  1. On the File menu, click New and then click New Project.

  2. In the left pane, select Installed, select Other Project Types, and then select Visual Studio Solutions from the expanded list.

  3. In the middle pane, select Blank Solution.

  4. Set the Name and Location values for your solution, then click OK.

After you create an empty solution, you can add new or existing projects or items to it by clicking Add New Item or Add Existing Item on the Projectmenu.

출처 - https://msdn.microsoft.com/en-us/library/zfzh36t7.aspx


'코딩 > Visual Studio' 카테고리의 다른 글

c# 프로젝트 참조들이 느낌표로 표시될 때  (0) 2017.11.09
Posted by foon
코딩/Visual Studio2017. 11. 9. 20:52

루션에 프로젝트를 추가하면 참조에 느낌표가 표시되면서 빌드가 안 되는 경우가 있습니다.





이때, 프로젝트 파일 ( Example.csproj )을 열었을 때, 다음 문구가 있다면, 


...


<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />

  <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">

    <PropertyGroup>

      <ErrorText>이 프로젝트는 이 컴퓨터에 없는 NuGet 패키지를 참조합니다. ... </ErrorText>

    </PropertyGroup>

    <Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />

  </Target> 


...


아래와 같이 <!-- ... --> 로 주석 처리를 해주면 됩니다.


 

...


<!--


<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />

  <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">

    <PropertyGroup>

      <ErrorText>이 프로젝트는 이 컴퓨터에 없는 NuGet 패키지를 참조합니다. ... </ErrorText>

    </PropertyGroup>

    <Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />

  </Target> 


-->

...


< END >

Posted by foon
학습2017. 11. 9. 07:56

큰 애가 학원에 외워갈 문장입니다. 

아이의 암기에 도움을 줄 수 있도록 몇 자 적어보니다. 같이 외워보실래요? ^^


* 원문

Most reputable universities require standardized tests for admission.

This is considered the norm for testing an applicant's proficiency.

Many students are familiar with language proficiency tests,

which measure student's ability in a foreign language.

A student who wants to go to a foreign high school, work for an international company,

or live in another country may want to take this test.


* 구글 번역기

대부분의 평판 좋은 대학은 표준화 된 입학 시험을 요구합니다.

이는 신청자의 숙련도를 테스트하는 데있어 표준으로 간주됩니다.

많은 학생들이 언어 능력 테스트에 익숙하며,

외국어로 학생의 능력을 측정합니다.

외국 고등학교에 가고 싶어하는 학생, 국제적인 회사에서 일하는 학생,

또는 다른 나라에 거주하는 경우이 시험을 치를 수 있습니다.


* 단어

reputable 평판이 좋은

admission 입학(허가)

proficiency 숙련도


* 주어 / 동사 + 목적어 or 꾸밈

Most reputable universities / require standardized tests for admission.

This / is considered the norm for testing an applicant's proficiency.

Many students / are familiar with language proficiency tests,

which / measure student's ability in a foreign language

A student [ who / wants to go to a foreign high school, work for an international company,

or live in another country ] / may want to take this test.


require ~을 필요로하다

is ~ 다 ( 이러하다 )

are ~ 다 ( 이러하다 )

measure 측정하다

wants 원하다 (3인칭 단수)

want 원하다 (조동사 may 뒤에 동사 원형)


* 가로넣기 1

Most ___________ universities require _______________ tests for admission.

This is ______________ the norm for testing an applicant's proficiency.

Many students are ____________ with language proficiency tests,

which measure student's ability in a ___________ language.

A student who wants to go to a ___________ high school, work for an ________________ company,

or live in _____________ country may want to take this test.


* 가로넣기 2

Most reputable ___________ require standardized tests for __________.

This is considered the _______ for testing an applicant's ____________.

Many students are familiar with language proficiency tests,

which measure student's _________ in a foreign __________.

A student who wants to go to a foreign high school, work for an international ___________,

or live in another ___________ may want to take this test.

Posted by foon