Skip to content

Commit 6c98f0a

Browse files
committed
Add MIT license
1 parent b30c60e commit 6c98f0a

3 files changed

Lines changed: 39 additions & 5 deletions

File tree

Experimental.System.Messaging.sln

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 15
4-
VisualStudioVersion = 15.0.27130.2010
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.29424.173
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Experimental.System.Messaging", "Experimental.System.Messaging\Experimental.System.Messaging.csproj", "{4E15CB46-6B0A-4571-8B4A-DA0BB24F381F}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Experimental.System.Messaging", "Experimental.System.Messaging\Experimental.System.Messaging.csproj", "{4E15CB46-6B0A-4571-8B4A-DA0BB24F381F}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Experimental.System.Messaging.Test", "Experimental.System.Messaging.Test\Experimental.System.Messaging.Test.csproj", "{8B86BFC7-FAF7-40C0-9BAD-BEED6424F003}"
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Experimental.System.Messaging.Test", "Experimental.System.Messaging.Test\Experimental.System.Messaging.Test.csproj", "{8B86BFC7-FAF7-40C0-9BAD-BEED6424F003}"
9+
EndProject
10+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{FABF2F6A-8B61-4D38-84B9-F046F077553E}"
11+
ProjectSection(SolutionItems) = preProject
12+
LICENSE.txt = LICENSE.txt
13+
EndProjectSection
914
EndProject
1015
Global
1116
GlobalSection(SolutionConfigurationPlatforms) = preSolution

Experimental.System.Messaging/Experimental.System.Messaging.csproj

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@
1313
<Description>This package is a counterfeit of the .NET Framework version System.Messaging assembly for .NET Core applications running on Windows Client and Windows Server. It is provided for development convenience. Do not use this package if Microsoft officially releases this package again. Also, once it is released, you should migrate the code to the new package.
1414

1515
The source code for this package is excerpted from the .NET Framework reference source code.</Description>
16-
<PackageLicenseUrl>https://referencesource.microsoft.com/license.html</PackageLicenseUrl>
16+
<PackageLicenseUrl></PackageLicenseUrl>
1717
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1818
<PackageReleaseNotes>This version of the System.Messaging package excludes all advanced features such as code access security, execute permissions, and Active Directory integration. I released the package keeping in mind the minimal use of Message Queuing communication facilities. Please confirm whether it is suitable for actual use through unit test and integration test.</PackageReleaseNotes>
1919
<PackageProjectUrl>https://referencesource.microsoft.com/#System.Messaging</PackageProjectUrl>
2020
<RepositoryUrl>https://github.com/krazure/Experimental.System.Messaging</RepositoryUrl>
2121
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
22+
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
2223
</PropertyGroup>
2324

2425
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
@@ -33,4 +34,11 @@ The source code for this package is excerpted from the .NET Framework reference
3334
<WarningLevel>2</WarningLevel>
3435
</PropertyGroup>
3536

37+
<ItemGroup>
38+
<None Include="..\LICENSE.txt">
39+
<Pack>True</Pack>
40+
<PackagePath></PackagePath>
41+
</None>
42+
</ItemGroup>
43+
3644
</Project>

LICENSE.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) Microsoft Corporation
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)