CSharp:Project
Categories
.NET Categories
TargetFramework
최신 버전
다음 표에서는 가장 일반적인 대상 프레임워크, 프레임워크가 참조되는 방법 및 프레임워크에서 구현하는 .NET Standard의 버전을 정의합니다. 이러한 대상 프레임워크 버전은 안정적인 최신 버전입니다. 시험판 버전은 표시되지 않습니다. TFM(대상 프레임워크 모니커)은 .NET 앱 또는 라이브러리의 대상 프레임워크를 지정하기 위해 표준화된 토큰 형식입니다.
|   대상 프레임워크  |    최신 안정적인 버전  |    TFM (대상 프레임워크 모니커)  |    구현된 .NET Standard 버전  |  
|   2.1  |    netstandard2.1  |    해당 없음  |  |
|   3.1  |    netcoreapp3.1  |    2.1  |  |
|   4.8  |    net48  |    2.0  |  
Example
godot 예시:
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Godot.NET.Sdk/3.2.3">
  <PropertyGroup>
    <ProjectGuid>{3D2D5DB4-B5C8-49AB-9671-40CCF377C9D2}</ProjectGuid>
    <OutputType>Library</OutputType>
    <RootNamespace>EduPiano</RootNamespace>
    <AssemblyName>EduPiano</AssemblyName>
    <GodotProjectGeneratorVersion>1.0.0.0</GodotProjectGeneratorVersion>
    <TargetFramework>netcoreapp3.1</TargetFramework>
    <!--The following properties were overriden during migration to prevent errors.
    Enabling them may require other manual changes to the project and its files.-->
    <EnableDefaultCompileItems>false</EnableDefaultCompileItems>
    <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
    <Deterministic>false</Deterministic>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Piano.cs" />
    <Compile Include="Pitch\MicSpectrum.cs" />
  </ItemGroup>
  <ItemGroup>
    <PackageReference Include="Manufaktura.Controls" Version="1.4.1" />
  </ItemGroup>
</Project>