Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit e4a3614

Browse files
committed
Add separate .Source .csproj's to reference projects instead of packages
1 parent 3d7244d commit e4a3614

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<PackageId>ServiceStack.Aws</PackageId>
5+
<AssemblyName>ServiceStack.Aws</AssemblyName>
6+
<TargetFrameworks>net45;netstandard2.0</TargetFrameworks>
7+
<Title>ServiceStack integration for Amazon Web Services (AWS)</Title>
8+
<PackageDescription>
9+
ServiceStack integration for Amazon Web Services (AWS) including:
10+
11+
- PocoDynamo - Declarative, code-first POCO client for DynamoDB with LINQ support
12+
- SqsMqServer - MQ Server for invoking ServiceStack Services via Amazon SQS MQ Service
13+
- S3VirtualFiles - A read/write Virtual FileSystem around Amazon's S3 Simple Storage Service
14+
- DynamoDbAuthRepository - A UserAuth repository storing UserAuth info in DynamoDB
15+
- DynamoDbAppSettings - An AppSettings provider storing App configuration in DynamoDB
16+
- DynamoDbCacheClient - A Caching Provider for DynamoDB
17+
</PackageDescription>
18+
<PackageTags>ServiceStack;AWS;Amazon;WebServices;DynamoDb;S3;SQS;Cache;CacheClient</PackageTags>
19+
</PropertyGroup>
20+
21+
<ItemGroup>
22+
<ProjectReference Include="..\..\..\ServiceStack\src\ServiceStack\ServiceStack.Source.csproj" />
23+
<PackageReference Include="AWSSDK.Core" Version="3.3.25.3" />
24+
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.3.14.2" />
25+
<PackageReference Include="AWSSDK.S3" Version="3.3.23.2" />
26+
<PackageReference Include="AWSSDK.SQS" Version="3.3.3.19" />
27+
</ItemGroup>
28+
29+
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
30+
<Reference Include="System.Net" />
31+
</ItemGroup>
32+
33+
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
34+
<PackageReference Include="System.ServiceModel.Primitives" Version="4.5.3" />
35+
</ItemGroup>
36+
37+
</Project>

0 commit comments

Comments
 (0)