Skip to content

Commit

Permalink
switched to .NET Standard 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tibel committed Aug 25, 2017
1 parent bcb1796 commit 8ae64b8
Show file tree
Hide file tree
Showing 10 changed files with 38 additions and 192 deletions.
37 changes: 10 additions & 27 deletions Weakly.sln
Original file line number Diff line number Diff line change
@@ -1,42 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.23107.0
# Visual Studio 15
VisualStudioVersion = 15.0.26730.10
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Weakly", "src\Weakly\Weakly.csproj", "{AA37F0C0-AA8C-46DE-AC8A-DB844C9AC556}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{366666F0-906D-48CE-AF3B-299B75AA10AB}"
ProjectSection(SolutionItems) = preProject
src\GlobalAssemblyInfo.cs = src\GlobalAssemblyInfo.cs
LICENSE = LICENSE
README.md = README.md
build\Weakly.nuspec = build\Weakly.nuspec
EndProjectSection
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Weakly", "src\Weakly\Weakly.csproj", "{609A4EED-A5D1-4678-BDC5-74CC397B0FC4}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|ARM = Debug|ARM
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|ARM = Release|ARM
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{AA37F0C0-AA8C-46DE-AC8A-DB844C9AC556}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AA37F0C0-AA8C-46DE-AC8A-DB844C9AC556}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AA37F0C0-AA8C-46DE-AC8A-DB844C9AC556}.Debug|ARM.ActiveCfg = Debug|Any CPU
{AA37F0C0-AA8C-46DE-AC8A-DB844C9AC556}.Debug|x64.ActiveCfg = Debug|Any CPU
{AA37F0C0-AA8C-46DE-AC8A-DB844C9AC556}.Debug|x86.ActiveCfg = Debug|Any CPU
{AA37F0C0-AA8C-46DE-AC8A-DB844C9AC556}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AA37F0C0-AA8C-46DE-AC8A-DB844C9AC556}.Release|Any CPU.Build.0 = Release|Any CPU
{AA37F0C0-AA8C-46DE-AC8A-DB844C9AC556}.Release|ARM.ActiveCfg = Release|Any CPU
{AA37F0C0-AA8C-46DE-AC8A-DB844C9AC556}.Release|x64.ActiveCfg = Release|Any CPU
{AA37F0C0-AA8C-46DE-AC8A-DB844C9AC556}.Release|x86.ActiveCfg = Release|Any CPU
{609A4EED-A5D1-4678-BDC5-74CC397B0FC4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{609A4EED-A5D1-4678-BDC5-74CC397B0FC4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{609A4EED-A5D1-4678-BDC5-74CC397B0FC4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{609A4EED-A5D1-4678-BDC5-74CC397B0FC4}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {10E885F4-1DF1-4AC2-A19D-AC6E545B033D}
EndGlobalSection
EndGlobal
2 changes: 0 additions & 2 deletions Weakly.sln.DotSettings

This file was deleted.

25 changes: 0 additions & 25 deletions build/Weakly.nuspec

This file was deleted.

4 changes: 0 additions & 4 deletions build/create-package.cmd

This file was deleted.

4 changes: 0 additions & 4 deletions build/publish-package.cmd

This file was deleted.

16 changes: 0 additions & 16 deletions src/GlobalAssemblyInfo.cs

This file was deleted.

5 changes: 2 additions & 3 deletions src/Weakly/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using System.Reflection;
using System;

[assembly: AssemblyTitle("Weakly")]
[assembly: AssemblyDescription("Weakly is a collection of some useful weak-reference types.")]
[assembly: CLSCompliant(true)]
125 changes: 26 additions & 99 deletions src/Weakly/Weakly.csproj
Original file line number Diff line number Diff line change
@@ -1,107 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<MinimumVisualStudioVersion>11.0</MinimumVisualStudioVersion>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{AA37F0C0-AA8C-46DE-AC8A-DB844C9AC556}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Weakly</RootNamespace>
<AssemblyName>Weakly</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkProfile>Profile259</TargetFrameworkProfile>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<TargetFramework>netstandard1.3</TargetFramework>
<Description>Weakly is a collection of some useful weak-reference types.</Description>
<Company>https://github.com/tibel/</Company>
<Version>2.8.0</Version>
<Authors>Thomas Ibel</Authors>
<PackageLicenseUrl>https://raw.github.com/tibel/Weakly/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/tibel/Weakly</PackageProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/tibel/Weakly/master/build/weakly_icon.png</PackageIconUrl>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\Weakly.snk</AssemblyOriginatorKeyFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Copyright>Copyright © Thomas Ibel 2013-2015</Copyright>
<PackageTags>Weakly WeakReference WeakAction WeakFunc WeakDelegate WeakCollection WeakValueDictionary WeakEventHandler WeakEventSource Async Task</PackageTags>
<PackageReleaseNotes>Switched to .NET Standard 1.3</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>..\..\bin\Debug\netstandard1.3\Weakly.xml</DocumentationFile>
<OutputPath>..\..\bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>..\..\bin\Debug\Weakly.XML</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>..\..\bin\Release\netstandard1.3\Weakly.xml</DocumentationFile>
<OutputPath>..\..\bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>..\..\bin\Release\Weakly.XML</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\Weakly.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<!-- A reference to the entire .NET Framework is automatically included -->
<None Include="..\Weakly.snk">
<Link>Weakly.snk</Link>
</None>
<None Include="packages.config" />
</ItemGroup>

<ItemGroup>
<Compile Include="..\GlobalAssemblyInfo.cs">
<Link>Properties\GlobalAssemblyInfo.cs</Link>
</Compile>
<Compile Include="Builders\Builder.cs" />
<Compile Include="Builders\CachingDynamicDelegateBuilderDecorator.cs" />
<Compile Include="Builders\CachingPropertyAccessorBuilderDecorator.cs" />
<Compile Include="Builders\ReflectionDynamicDelegateBuilder.cs" />
<Compile Include="Builders\ExpressionDynamicDelegateBuilder.cs" />
<Compile Include="Builders\ReflectionOpenActionBuilder.cs" />
<Compile Include="Builders\ReflectionOpenFuncBuilder.cs" />
<Compile Include="Builders\ReflectionPropertyAccessorBuilder.cs" />
<Compile Include="Builders\ExpressionPropertyAccessorBuilder.cs" />
<Compile Include="Builders\IDynamicDelegateBuilder.cs" />
<Compile Include="Builders\IPropertyAccessorBuilder.cs" />
<Compile Include="Collections\DictionaryHelper.cs" />
<Compile Include="Collections\EnumerableHelper.cs" />
<Compile Include="Builders\SimpleCache.cs" />
<Compile Include="Collections\WeakCollection.cs" />
<Compile Include="Collections\WeakValueDictionary.cs" />
<Compile Include="Builders\CachingOpenActionBuilderDecorator.cs" />
<Compile Include="Builders\CachingOpenFuncBuilderDecorator.cs" />
<Compile Include="Delegates\DisposableAction.cs" />
<Compile Include="Builders\ExpressionOpenActionBuilder.cs" />
<Compile Include="Builders\ExpressionOpenFuncBuilder.cs" />
<Compile Include="Builders\IOpenActionBuilder.cs" />
<Compile Include="Builders\IOpenFuncBuilder.cs" />
<Compile Include="Delegates\WeakFunc.cs" />
<Compile Include="EmptyCaptureAttribute.cs" />
<Compile Include="Events\IWeakEventHandler.cs" />
<Compile Include="Delegates\WeakAction.cs" />
<Compile Include="Events\WeakCanExecuteChangedHandler.cs" />
<Compile Include="Events\WeakEventHandlerBase.cs" />
<Compile Include="Events\WeakEventHandler.cs" />
<Compile Include="Events\WeakEventList.cs" />
<Compile Include="Events\WeakEventListener.cs" />
<Compile Include="Events\WeakEventSource.cs" />
<Compile Include="Events\WeakNotifyCollectionChangedHandler.cs" />
<Compile Include="Events\WeakNotifyPropertyChangedHandler.cs" />
<Compile Include="NamedObject.cs" />
<Compile Include="Reflection\ReflectionHelper.cs" />
<Compile Include="IO\MemoryTributary.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Reflection\ReflectionPath.cs" />
<Compile Include="Tasks\TaskEventArgs.cs" />
<Compile Include="Tasks\TaskHelper.cs" />
<Compile Include="Tasks\ApmHelper.cs" />
<None Include="..\Weakly.snk" Link="Weakly.snk" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

</Project>
8 changes: 0 additions & 8 deletions src/Weakly/Weakly.csproj.DotSettings

This file was deleted.

4 changes: 0 additions & 4 deletions src/Weakly/packages.config

This file was deleted.

0 comments on commit 8ae64b8

Please sign in to comment.