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/
250
250
# JetBrains Rider
251
251
.idea /
252
252
* .sln.iml
253
+ /src /Whathecode.System /Whathecode.System.xml
Original file line number Diff line number Diff line change 1
1
using System . Reflection ;
2
- using System . Runtime . CompilerServices ;
3
2
using System . Runtime . InteropServices ;
4
3
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
+
10
5
[ 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
12
12
13
13
// Setting ComVisible to false makes the types in this assembly not visible
14
14
// 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" >
2
2
<Import Project =" $(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" />
3
3
<PropertyGroup >
4
4
<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
+
5
13
<AssemblyName >Whathecode.System</AssemblyName >
6
14
<PackageTargetFallback Condition =" '$(TargetFramework)' == 'netstandard1.6' " >$(PackageTargetFallback);dnxcore50</PackageTargetFallback >
7
15
<GenerateAssemblyConfigurationAttribute >false</GenerateAssemblyConfigurationAttribute >
14
22
<EmbeddedResource Include =" compiler\resources\**\*" />
15
23
</ItemGroup >
16
24
<ItemGroup >
17
- <Content Include =" project.json" />
25
+ <None Include =" project.json" />
18
26
</ItemGroup >
19
27
<ItemGroup >
20
28
<PackageReference Include =" Microsoft.NET.Sdk" >
27
35
</ItemGroup >
28
36
<ItemGroup />
29
37
<PropertyGroup Label =" Configuration" >
30
- <OutputPath >
31
- </ OutputPath >
38
+ <OutputPath / >
39
+ <DocumentationFile >Whathecode.System.xml</ DocumentationFile >
32
40
</PropertyGroup >
33
41
<PropertyGroup Condition =" '$(Configuration)' == 'Release' " >
34
42
<DefineConstants >$(DefineConstants);RELEASE</DefineConstants >
Original file line number Diff line number Diff line change 13
13
<EmbeddedResource Include =" **\*.resx" />
14
14
</ItemGroup >
15
15
<ItemGroup >
16
- <Content Include =" project.json" />
17
- <Content Include =" xunit.runner.json" >
16
+ <None Include =" project.json" />
17
+ <None Include =" xunit.runner.json" >
18
18
<CopyToOutputDirectory >PreserveNewest</CopyToOutputDirectory >
19
- </Content >
19
+ </None >
20
20
</ItemGroup >
21
21
<ItemGroup >
22
22
<PackageReference Include =" Microsoft.NETCore.App" >
You can’t perform that action at this time.
0 commit comments