Example.csproj 600 B

123456789101112131415
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <!-- Version numbers are automatically updated by gitversion when a release is released -->
  5. <!-- In the source tree the version will always be 1.0 for all projects. -->
  6. <!-- Do not modify these. -->
  7. <AssemblyVersion>2.0</AssemblyVersion>
  8. <FileVersion>2.0</FileVersion>
  9. <Version>2.0</Version>
  10. <InformationalVersion>2.0</InformationalVersion>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <ProjectReference Include="..\Terminal.Gui\Terminal.Gui.csproj" />
  14. </ItemGroup>
  15. </Project>