Created
October 20, 2021 04:27
-
-
Save KirillOsenkov/1d9baa3aacb1ed4c924b1e6436e001e0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"sdk": { | |
"allowPrerelease": true | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
public partial class Program | |
{ | |
private readonly string _foo; | |
static void Main(string[] args) | |
{ | |
Console.WriteLine(); | |
_ = ThisAssembly.Info.InformationalVersion; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<TargetFramework>net6.0</TargetFramework> | |
<DebugType>embedded</DebugType> | |
<LangVersion>latest</LangVersion> | |
<Prefer32Bit>true</Prefer32Bit> | |
<OutputType>exe</OutputType> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageReference Include="ThisAssembly.AssemblyInfo" Version="1.0.8" /> | |
</ItemGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment