Skip to content

Commit fcad063

Browse files
committed
#199 Split attributes out so net standard can be targeted
1 parent 6a3441d commit fcad063

9 files changed

Lines changed: 34 additions & 1 deletion

File tree

Saunter.sln

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ EndProject
2525
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Saunter.IntegrationTests.ReverseProxy", "test\Saunter.IntegrationTests.ReverseProxy\Saunter.IntegrationTests.ReverseProxy.csproj", "{7CD09B89-130A-41AF-ADAE-2166C4ED695B}"
2626
EndProject
2727
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Saunter.Tests.MarkerTypeTests", "test\Saunter.Tests.MarkerTypeTests\Saunter.Tests.MarkerTypeTests.csproj", "{02284473-6DE7-4EE0-8433-2AC295045549}"
28+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AsyncAPI.Saunter.Attributes", "src\AsyncAPI.Saunter.Attributes\AsyncAPI.Saunter.Attributes.csproj", "{3591421D-0853-48C6-9A53-9E6B5D7E6B25}"
2829
EndProject
2930
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "actions", "actions", "{D8CB9C0D-9605-457B-979F-C8994B20A926}"
3031
ProjectSection(SolutionItems) = preProject
@@ -112,6 +113,18 @@ Global
112113
{02284473-6DE7-4EE0-8433-2AC295045549}.Release|x64.Build.0 = Release|Any CPU
113114
{02284473-6DE7-4EE0-8433-2AC295045549}.Release|x86.ActiveCfg = Release|Any CPU
114115
{02284473-6DE7-4EE0-8433-2AC295045549}.Release|x86.Build.0 = Release|Any CPU
116+
{3591421D-0853-48C6-9A53-9E6B5D7E6B25}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
117+
{3591421D-0853-48C6-9A53-9E6B5D7E6B25}.Debug|Any CPU.Build.0 = Debug|Any CPU
118+
{3591421D-0853-48C6-9A53-9E6B5D7E6B25}.Debug|x64.ActiveCfg = Debug|Any CPU
119+
{3591421D-0853-48C6-9A53-9E6B5D7E6B25}.Debug|x64.Build.0 = Debug|Any CPU
120+
{3591421D-0853-48C6-9A53-9E6B5D7E6B25}.Debug|x86.ActiveCfg = Debug|Any CPU
121+
{3591421D-0853-48C6-9A53-9E6B5D7E6B25}.Debug|x86.Build.0 = Debug|Any CPU
122+
{3591421D-0853-48C6-9A53-9E6B5D7E6B25}.Release|Any CPU.ActiveCfg = Release|Any CPU
123+
{3591421D-0853-48C6-9A53-9E6B5D7E6B25}.Release|Any CPU.Build.0 = Release|Any CPU
124+
{3591421D-0853-48C6-9A53-9E6B5D7E6B25}.Release|x64.ActiveCfg = Release|Any CPU
125+
{3591421D-0853-48C6-9A53-9E6B5D7E6B25}.Release|x64.Build.0 = Release|Any CPU
126+
{3591421D-0853-48C6-9A53-9E6B5D7E6B25}.Release|x86.ActiveCfg = Release|Any CPU
127+
{3591421D-0853-48C6-9A53-9E6B5D7E6B25}.Release|x86.Build.0 = Release|Any CPU
115128
EndGlobalSection
116129
GlobalSection(SolutionProperties) = preSolution
117130
HideSolutionNode = FALSE
@@ -124,6 +137,7 @@ Global
124137
{02284473-6DE7-4EE0-8433-2AC295045549} = {6491E321-2D02-44AB-9116-D722FE169595}
125138
{69459F9D-DA73-4E84-8BA7-4CE03E2B7664} = {D8CB9C0D-9605-457B-979F-C8994B20A926}
126139
{E8FACA22-CFED-4710-89E4-D55F31BF96B3} = {D8CB9C0D-9605-457B-979F-C8994B20A926}
140+
{3591421D-0853-48C6-9A53-9E6B5D7E6B25} = {28D4C365-FDED-49AE-A97D-36202E24A55A}
127141
EndGlobalSection
128142
GlobalSection(ExtensibilityGlobals) = postSolution
129143
SolutionGuid = {2F85D9DA-DBCF-4F13-8C42-5719F1469B2E}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<PackageId>AysncAPI.Saunter.Attributes</PackageId>
5+
<Title>AysncAPI.Saunter.Attributes</Title>
6+
<TargetFramework>netstandard2.0</TargetFramework>
7+
<PackageReadmeFile>README.md</PackageReadmeFile>
8+
<Description>Provides the raw attributes which can be used to decorate code as being async api functions</Description>
9+
</PropertyGroup>
10+
11+
<ItemGroup>
12+
<InternalsVisibleTo Include="Saunter.Tests" />
13+
</ItemGroup>
14+
15+
</Project>
File renamed without changes.
File renamed without changes.

src/Saunter/Attributes/ChannelParameterAttribute.cs renamed to src/AsyncAPI.Saunter.Attributes/ChannelParameterAttribute.cs

File renamed without changes.
File renamed without changes.
File renamed without changes.

src/AsyncAPI.Saunter.Attributes/readme.md

Whitespace-only changes.

src/Saunter/Saunter.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,9 @@
6060
<Link>UI\package.json</Link>
6161
</None>
6262
</ItemGroup>
63-
63+
64+
<ItemGroup>
65+
<ProjectReference Include="..\AsyncAPI.Saunter.Attributes\AsyncAPI.Saunter.Attributes.csproj" />
66+
</ItemGroup>
67+
6468
</Project>

0 commit comments

Comments
 (0)