--- lang: ja-jp breaks: true --- # .NET Core `AssemblyInfo.cs` について 2021-08-11 > dotnet core / csprojのAssemblyInfoに相当します。 - visual-studio、visual-studio-2017、.net-core、assemblyinfo > https://living-sun.com/ja/visual-studio/849653-equivalent-to-assemblyinfo-in-dotnet-core-csproj-visual-studio-visual-studio-2017-net-core-assemblyinfo.html ## `AssemblyInfo.cs` を独自に作成する場合は、csprojファイルに設定を行う ```xml= <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> ・・・ <GenerateAssemblyInfo>false</GenerateAssemblyInfo> ・・・ </PropertyGroup> ・・・ ``` ###### tags: `.NET Core` `AssemblyInfo.cs`