-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdotnet-version-check.csproj
27 lines (22 loc) · 1.21 KB
/
dotnet-version-check.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<!-- Needs to be WinExe to trigger install prompt for .NET Core. This does prevent console output though so have to work around that -->
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<!-- Target win7 x86/x64 but not self contained so is FDE, yet package as single file and compile ready-to-run for small executable -->
<RuntimeIdentifiers>win7-x64;win7-x86</RuntimeIdentifiers>
<SelfContained>false</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
<PublishReadyToRun>true</PublishReadyToRun>
<RootNamespace>DotNetVersionCheck</RootNamespace>
<UseWPF>true</UseWPF>
<PackageId>DotNetVersionCheck</PackageId>
<Version>0.1.0</Version>
<Authors>tjmoore</Authors>
<PackageDescription>Reports .NET runtime version information and/or triggers a prompt to install .NET Core runtime if applicable</PackageDescription>
<RepositoryUrl>https://github.com/tjmoore/dotnet-version-check</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.CommandLine" Version="0.3.0-alpha.20054.1" />
</ItemGroup>
</Project>