Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions OneOf.StrongName/OneOf.StrongName.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net35;net45;netstandard1.3;netstandard2.0</TargetFrameworks>
<Authors>Harry McIntyre</Authors>
<Title>OneOf - Easy Discriminated Unions for c#</Title>
<Company>Harry McIntyre</Company>
<PackageVersion>1.0.0</PackageVersion>
<Product>Harry McIntyre</Product>
<Description>F# style discriminated unions for C#, using a custom type OneOf&lt;T0, ... Tn&gt; which holds a single value and has a .Match(...) method on it for exhaustive matching. Simple but powerful.</Description>
<PackageProjectUrl>https://github.com/mcintyre321/OneOf/</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/mcintyre321/OneOf/blob/master/licence.md</PackageLicenseUrl>
<PackageTags>discriminated unions, return type, match switch</PackageTags>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>OneOf</PackageId>
<Copyright>Harry McIntyre</Copyright>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<AssemblyOriginatorKeyFile>OneOf.StrongName.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>

<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
</ItemGroup>

<ItemGroup>
<Compile Include="../OneOf/**/*.cs" Exclude="../OneOf/obj/**/*.cs"/>
</ItemGroup>
</Project>
Binary file added OneOf.StrongName/OneOf.StrongName.snk
Binary file not shown.
6 changes: 6 additions & 0 deletions OneOf.sln
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OneOf.SourceGenerator.Tests
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OneOf.SourceGenerator.AnalyzerTests", "OneOf.SourceGenerator.AnalyzerTests\OneOf.SourceGenerator.AnalyzerTests.csproj", "{C08F270E-157A-48B9-A7B6-C948FCFC5494}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OneOf.StrongName", "OneOf.StrongName\OneOf.StrongName.csproj", "{DD265F9B-0D41-424F-AF83-BF523A43703C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -60,6 +62,10 @@ Global
{C08F270E-157A-48B9-A7B6-C948FCFC5494}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C08F270E-157A-48B9-A7B6-C948FCFC5494}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C08F270E-157A-48B9-A7B6-C948FCFC5494}.Release|Any CPU.Build.0 = Release|Any CPU
{DD265F9B-0D41-424F-AF83-BF523A43703C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DD265F9B-0D41-424F-AF83-BF523A43703C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DD265F9B-0D41-424F-AF83-BF523A43703C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DD265F9B-0D41-424F-AF83-BF523A43703C}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down