File tree Expand file tree Collapse file tree 4 files changed +23
-14
lines changed
test/Whathecode.System.Tests Expand file tree Collapse file tree 4 files changed +23
-14
lines changed Original file line number Diff line number Diff line change @@ -250,3 +250,4 @@ paket-files/
250250# JetBrains Rider
251251.idea /
252252* .sln.iml
253+ /src /Whathecode.System /Whathecode.System.xml
Original file line number Diff line number Diff line change 11using System . Reflection ;
2- using System . Runtime . CompilerServices ;
32using System . Runtime . InteropServices ;
43
5- // General Information about an assembly is controlled through the following
6- // set of attributes. Change these attribute values to modify the information
7- // associated with an assembly.
8- [ assembly: AssemblyConfiguration ( "" ) ]
9- [ assembly: AssemblyCompany ( "" ) ]
4+
105[ assembly: AssemblyProduct ( "Whathecode.System" ) ]
11- [ assembly: AssemblyTrademark ( "" ) ]
6+ [ assembly: AssemblyCompany ( "Whathecode" ) ]
7+ #if DEBUG
8+ [ assembly: AssemblyConfiguration ( "Debug" ) ]
9+ #else
10+ [ assembly: AssemblyConfiguration ( "Release" ) ]
11+ #endif
1212
1313// Setting ComVisible to false makes the types in this assembly not visible
1414// to COM components. If you need to access a type in this assembly from
Original file line number Diff line number Diff line change 1- <Project ToolsVersion =" 15.0" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
1+ <Project ToolsVersion =" 15.0" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
22 <Import Project =" $(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" />
33 <PropertyGroup >
44 <TargetFramework >netstandard1.6</TargetFramework >
5+
6+ <!-- NuGet package details. -->
7+ <Authors >Whathecode</Authors >
8+ <PackageId >NET-Standard-Library-Extension</PackageId >
9+ <Description >Highly reuseable classes and methods I find to be missing in the .NET Standard Library.</Description >
10+ <PackageReleaseNotes >First release after porting suitable parts of the old FCL library extension to .NET Standard.</PackageReleaseNotes >
11+ <Copyright >Copyright (c) 2016 Steven Jeuris</Copyright >
12+
513 <AssemblyName >Whathecode.System</AssemblyName >
614 <PackageTargetFallback Condition =" '$(TargetFramework)' == 'netstandard1.6' " >$(PackageTargetFallback);dnxcore50</PackageTargetFallback >
715 <GenerateAssemblyConfigurationAttribute >false</GenerateAssemblyConfigurationAttribute >
1422 <EmbeddedResource Include =" compiler\resources\**\*" />
1523 </ItemGroup >
1624 <ItemGroup >
17- <Content Include =" project.json" />
25+ <None Include =" project.json" />
1826 </ItemGroup >
1927 <ItemGroup >
2028 <PackageReference Include =" Microsoft.NET.Sdk" >
2735 </ItemGroup >
2836 <ItemGroup />
2937 <PropertyGroup Label =" Configuration" >
30- <OutputPath >
31- </ OutputPath >
38+ <OutputPath / >
39+ <DocumentationFile >Whathecode.System.xml</ DocumentationFile >
3240 </PropertyGroup >
3341 <PropertyGroup Condition =" '$(Configuration)' == 'Release' " >
3442 <DefineConstants >$(DefineConstants);RELEASE</DefineConstants >
Original file line number Diff line number Diff line change 1313 <EmbeddedResource Include =" **\*.resx" />
1414 </ItemGroup >
1515 <ItemGroup >
16- <Content Include =" project.json" />
17- <Content Include =" xunit.runner.json" >
16+ <None Include =" project.json" />
17+ <None Include =" xunit.runner.json" >
1818 <CopyToOutputDirectory >PreserveNewest</CopyToOutputDirectory >
19- </Content >
19+ </None >
2020 </ItemGroup >
2121 <ItemGroup >
2222 <PackageReference Include =" Microsoft.NETCore.App" >
You can’t perform that action at this time.
0 commit comments