Skip to content

Commit 436a9f1

Browse files
committed
Bumped target .net framework down
1 parent 4990ca7 commit 436a9f1

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

InteractivePrompt/InteractivePrompt.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>InteractivePrompt</RootNamespace>
1111
<AssemblyName>InteractivePrompt</AssemblyName>
12-
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
14+
<TargetFrameworkProfile />
1415
</PropertyGroup>
1516
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1617
<DebugSymbols>true</DebugSymbols>

InteractivePrompt/InteractivePrompt.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<iconUrl>https://raw.githubusercontent.com/sorrell/InteractivePrompt/master/InteractivePrompt/Properties/InteractivePrompt.png</iconUrl>
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1313
<description>A REPL for Console Apps that features a command history. Just add your own prompt, startup message, and callback for handling the user input. More info at https://github.com/sorrell/InteractivePrompt</description>
14-
<releaseNotes>First Release.</releaseNotes>
14+
<releaseNotes>Fixed target framework</releaseNotes>
1515
<copyright>Copyright 2017</copyright>
1616
<tags>Shell Repl Prompt Interactive</tags>
1717
</metadata>

InteractivePrompt/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// set of attributes. Change these attribute values to modify the information
77
// associated with an assembly.
88
[assembly: AssemblyTitle("InteractivePrompt")]
9-
[assembly: AssemblyDescription("A repl for Console apps")]
9+
[assembly: AssemblyDescription("A REPL for building advanced Console apps, with a session command history via up/down arrows.")]
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("Cintio Ltd.")]
1212
[assembly: AssemblyProduct("InteractivePrompt")]
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.1.0")]
36-
[assembly: AssemblyFileVersion("1.0.1.0")]
35+
[assembly: AssemblyVersion("1.0.2.0")]
36+
[assembly: AssemblyFileVersion("1.0.2.0")]

0 commit comments

Comments
 (0)