|
@@ -6,10 +6,16 @@
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
<DefineConstants>TRACE;DEBUG_IDISPOSABLE</DefineConstants>
|
|
|
</PropertyGroup>
|
|
|
+
|
|
|
+ <PropertyGroup>
|
|
|
+ <!-- Uncomment this to have dotnet restore pull NStack from a local dir for testing -->
|
|
|
+ <!-- See https://stackoverflow.com/a/44463578/297526 -->
|
|
|
+ <!--<RestoreSources>$(RestoreSources);../../local-packages;https://api.nuget.org/v3/index.json</RestoreSources>-->
|
|
|
+ </PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2" PrivateAssets="all" />
|
|
|
- <PackageReference Include="NStack.Core" Version="0.16.0" />
|
|
|
+ <PackageReference Include="NStack.Core" Version="0.*" />
|
|
|
<PackageReference Include="MinVer" Version="4.0.0" PrivateAssets="all" />
|
|
|
<InternalsVisibleTo Include="UnitTests" />
|
|
|
<!-- <None Remove="ConsoleDrivers\#ConsoleDriver.cs#" /> -->
|
|
@@ -30,9 +36,8 @@
|
|
|
</EmbeddedResource>
|
|
|
</ItemGroup>
|
|
|
<PropertyGroup>
|
|
|
- <MinVerSkip Condition="'$(Configuration)' == 'Debug'">true</MinVerSkip>
|
|
|
- </PropertyGroup>
|
|
|
- <PropertyGroup>
|
|
|
+ <MinVerSkip Condition="'$(Configuration)' == 'Debug'">true</MinVerSkip>
|
|
|
+
|
|
|
<!-- See Terminal.Gui/README.md for how version numbering works -->
|
|
|
<!-- This enables prefixing version tags with v, e.g. v1.0.0 Instead of 1.0.0 -->
|
|
|
<MinVerTagPrefix>v</MinVerTagPrefix>
|