-
-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #49 from brminnick/release-5.0.0
Release 5.0.0
- Loading branch information
Showing
49 changed files
with
1,347 additions
and
937 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
65 changes: 60 additions & 5 deletions
65
Src/AsyncAwaitBestPractices.MVVM/AsyncAwaitBestPractices.MVVM.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,74 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard1.0</TargetFramework> | ||
<TargetFrameworks>netstandard1.0;netstandard2.0;netstandard2.1</TargetFrameworks> | ||
<LangVersion>latest</LangVersion> | ||
<Nullable>enable</Nullable> | ||
<ProduceReferenceAssembly>True</ProduceReferenceAssembly> | ||
<SignAssembly>true</SignAssembly> | ||
<AssemblyOriginatorKeyFile>AsyncAwaitBestPracticesMVVM.snk</AssemblyOriginatorKeyFile> | ||
<AssemblyName>AsyncAwaitBestPractices.MVVM</AssemblyName> | ||
<RootNamespace>AsyncAwaitBestPractices.MVVM</RootNamespace> | ||
<PackageId>AsyncAwaitBestPractices.MVVM</PackageId> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<Summary> | ||
Async Extensions for ICommand | ||
|
||
Includes AsyncCommand and IAsyncCommand which allows ICommand to safely be used asynchronously with Task. | ||
Includes AsyncValueCommand and IAsyncValueCommand which allows ICommand to safely be used asynchronously with ValueTask | ||
</Summary> | ||
<PackageTags>task, fire and forget, threading, extensions, system.threading.tasks, async, await, command, icommand, asynccommand, valuetask, asyncvaluecommand</PackageTags> | ||
<Title>Async Extensions for ICommand</Title> | ||
<Description> | ||
Async Extensions for ICommand | ||
|
||
Includes AsyncCommand and IAsyncCommand which allows ICommand to safely be used asynchronously with Task. | ||
Includes AsyncValueCommand and IAsyncValueCommand which allows ICommand to safely be used asynchronously with ValueTask | ||
</Description> | ||
<PackageReleaseNotes> | ||
New in this release: | ||
- Add `IAsyncCommand<TExecute, TCanExecute>` | ||
- Add `IAsyncValueCommand<TExecute, TCanExecute>` | ||
- Add `AsyncCommand<TExecute, TCanExecute>` | ||
- Add `AsyncValueCommand<TExecute, TCanExecute>` | ||
- Implement SourceLink | ||
</PackageReleaseNotes> | ||
<Version>5.0.0</Version> | ||
<RepositoryUrl>https://github.com/brminnick/AsyncAwaitBestPractices</RepositoryUrl> | ||
<Product>$(AssemblyName) ($(TargetFramework))</Product> | ||
<AssemblyVersion>1.0.0.0</AssemblyVersion> | ||
<AssemblyFileVersion>1.0.0.0</AssemblyFileVersion> | ||
<PackageVersion>$(Version)$(VersionSuffix)</PackageVersion> | ||
<Authors>Brandon Minnick, John Thiriet</Authors> | ||
<Owners>Brandon Minnick</Owners> | ||
<NeutralLanguage>en</NeutralLanguage> | ||
<Copyright>©Copyright 2020 Brandon Minnick. All rights reserved.</Copyright> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<DefineConstants>$(DefineConstants);</DefineConstants> | ||
<UseFullSemVerForNuGet>false</UseFullSemVerForNuGet> | ||
<EnableDefaultCompileItems>false</EnableDefaultCompileItems> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageProjectUrl>https://github.com/brminnick/AsyncAwaitBestPractices</PackageProjectUrl> | ||
<DebugType>portable</DebugType> | ||
<Configurations>Debug;Release</Configurations> | ||
<EnableDefaultCompileItems>false</EnableDefaultCompileItems> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<PropertyGroup Condition=" '$(Configuration)'=='Debug' "> | ||
<!-- Manage TargetFrameworks for development (Debug Mode) --> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>portable</DebugType> | ||
<DocumentationFile>bin\Release\netstandard2.0\AsyncAwaitBestPractices.MVVM.xml</DocumentationFile> | ||
</PropertyGroup> | ||
<ItemGroup Condition=" '$(Configuration)'=='Release' "> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="**/*.shared.cs" /> | ||
<Compile Include="**/*.shared.*.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\AsyncAwaitBestPractices\AsyncAwaitBestPractices.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\AsyncAwaitBestPractices\AsyncAwaitBestPractices.csproj" /> | ||
<PackageReference Update="NETStandard.Library" PrivateAssets="all" /> | ||
</ItemGroup> | ||
</Project> |
Oops, something went wrong.