Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Templates.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>0.2.0</PackageVersion>
<PackageVersion>0.3.0</PackageVersion>
<PackageId>docopt.net.templates</PackageId>
<Title>"dotnet new" templates using docopt.net</Title>
<Authors>Atif Aziz</Authors>
Expand Down
4 changes: 2 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "6.0.200",
"rollForward": "latestFeature"
"version": "10.0.100",
"rollForward": "latestPatch"
}
}
2 changes: 1 addition & 1 deletion src/ConsoleApp/DocoptNet.ConsoleApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions test.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ setlocal
pushd "%~dp0"
if not defined CI dotnet pack || goto :finally
set INSTALLED=
dotnet new --install src\ConsoleApp || goto :finally
dotnet new install src\ConsoleApp || goto :finally
set INSTALLED=1
dotnet new docopt-console -o tmp -n MyConsoleApp || goto :finally
dotnet run --project tmp -- --help || goto :finally
:finally
set EXIT_CODE=%ERRORLEVEL%
if exist tmp rmdir /s /q tmp
if defined INSTALLED dotnet new --uninstall src\ConsoleApp
if defined INSTALLED dotnet new uninstall src\ConsoleApp
popd
exit /b %EXIT_CODE%