|
23 | 23 | <PropertyGroup>
|
24 | 24 | <PackageId>DotNetVault</PackageId>
|
25 | 25 | <PackageVersion>0.2.5.1</PackageVersion>
|
| 26 | + <Owners>CJM Screws, LLC</Owners> |
26 | 27 | <Authors>Christopher Susie</Authors>
|
27 |
| - <PackageLicenseExpression>MIT</PackageLicenseExpression> |
28 | 28 | <PackageProjectUrl>https://github.com/cpsusie/DotNetVault</PackageProjectUrl>
|
29 | 29 | <RepositoryUrl>https://github.com/cpsusie/DotNetVault</RepositoryUrl>
|
30 | 30 | <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
|
33 | 33 |
|
34 | 34 | DotNetVault is a library and static code analysis tool that makes managing shared mutable state in multi-threaded applications more manageable and less error prone. It also provides a common abstraction over several commonly used synchronization mechanisms, allowing you to change from one underlying type to another (such as from lock free synchronization to mutex/monitor lock based) without needing to refactor your code. Where errors do still occur, they are easier to locate and identify.
|
35 | 35 |
|
36 |
| - The project description (a detailed design document) can be read here: https://github.com/cpsusie/DotNetVault/blob/v0.2.5.x/DotNetVault%20Description.pdf. |
| 36 | + The project description (a detailed design document) can be read here: https://github.com/cpsusie/DotNetVault/blob/v0.2.5.x/DotNetVault_Description_Latest_Draft.pdf. |
37 | 37 |
|
38 |
| - A quick start guide for installation (Windows, Vs 2019+) can be found here: https://github.com/cpsusie/DotNetVault/blob/v0.2.5.x/DotNetVaultQuickStart/DotNetVault%20Quick%20Start%20Installation%20Guide%20Visual%20Studio%202019%20(Windows%2010).md . |
| 38 | + A quick start guide for installation (Windows, Vs 2019+) can be found here: https://github.com/cpsusie/DotNetVault/blob/v0.2.5.x/QuickStart_Install_VS2019_Windows.md. |
39 | 39 |
|
40 |
| - A quick start guide for installation (Tested on Amazon Linux, Rider 2019.3.1+) can be found here: https://github.com/cpsusie/DotNetVault/blob/v0.2.5.x/DotNetVaultQuickStart/DotNetVault%20Quick%20Start%20Installation%20Guide%20Visual%20Studio%202019%20(Windows%2010).md . |
| 40 | + A quick start guide for installation (Tested on Amazon Linux, Rider 2019.3.1+) can be found here: https://github.com/cpsusie/DotNetVault/blob/v0.2.5.x/Quick_Start_Install_Rider_Amazon_Linux.md. |
41 | 41 |
|
42 |
| - A guided tour / quick start guide for this project's functionality can be found here: https://github.com/cpsusie/DotNetVault/blob/v0.2.5.x/DotNetVaultQuickStart/DotNetVault%20Quick%20Start%20Functionality%20Tour%20%E2%80%93%20JetBrains%20Rider%20(Amazon%20Linux).md#dotnetvault-quick-start-functionality-tour--jetbrains-rider-201931-amazon-linux |
| 42 | + A guided tour / quick start guide for this project's functionality can be found here: https://github.com/cpsusie/DotNetVault/blob/v0.2.5.x/Quick_Start_Functionality_Tour.md |
43 | 43 | </Description>
|
44 | 44 | <PackageReleaseNotes>
|
45 | 45 | RELEASE NOTES VERSION 0.2.5.1:
|
46 | 46 |
|
| 47 | + No significant changes to code in this release. |
| 48 | + |
47 | 49 | Resolved broken links displayed on project's NuGet page.
|
48 | 50 |
|
49 | 51 | Fixed problem with license on NuGet.
|
|
71 | 73 | <PackageTags>DotNetVault, analyzers, synchronization, thread-safety, threadsafe, deadlock, deadlock-prevention</PackageTags>
|
72 | 74 | <NoPackageAnalysis>true</NoPackageAnalysis>
|
73 | 75 | <LangVersion>8.0</LangVersion>
|
74 |
| - <Version>0.2.5.0</Version> |
| 76 | + <Version>0.2.5.1</Version> |
75 | 77 | <AssemblyName>DotNetVault</AssemblyName>
|
76 | 78 | <RootNamespace>DotNetVault</RootNamespace>
|
77 | 79 | <Company>CJM Screws, LLC</Company>
|
78 |
| - <AssemblyVersion>0.2.5.0</AssemblyVersion> |
79 |
| - <FileVersion>0.2.5.0</FileVersion> |
80 |
| - <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 80 | + <AssemblyVersion>0.2.5.1</AssemblyVersion> |
| 81 | + <FileVersion>0.2.5.1</FileVersion> |
| 82 | + <PackageLicenseFile>license.txt</PackageLicenseFile> |
81 | 83 | </PropertyGroup>
|
82 | 84 |
|
83 | 85 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
0 commit comments