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

Commit 8d3cfad

Browse files
committed
Add V45 Signed projs
1 parent 8d15bc0 commit 8d3cfad

File tree

3 files changed

+258
-1
lines changed

3 files changed

+258
-1
lines changed

src/ServiceStack.OrmLite.Sqlite.Windows/ServiceStack.OrmLite.Sqlite.Windows.Signed.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
<DefineConstants>DEBUG;TRACE</DefineConstants>
2424
<ErrorReport>prompt</ErrorReport>
2525
<WarningLevel>4</WarningLevel>
26+
<Prefer32Bit>false</Prefer32Bit>
2627
</PropertyGroup>
2728
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2829
<DebugType>pdbonly</DebugType>
@@ -31,12 +32,14 @@
3132
<DefineConstants>TRACE</DefineConstants>
3233
<ErrorReport>prompt</ErrorReport>
3334
<WarningLevel>4</WarningLevel>
35+
<Prefer32Bit>false</Prefer32Bit>
3436
</PropertyGroup>
3537
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Signed|AnyCPU'">
3638
<OutputPath>bin\Signed\</OutputPath>
3739
<PlatformTarget>AnyCPU</PlatformTarget>
3840
<ErrorReport>prompt</ErrorReport>
3941
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
42+
<Prefer32Bit>false</Prefer32Bit>
4043
</PropertyGroup>
4144
<ItemGroup>
4245
<Reference Include="ServiceStack.Interfaces">

src/ServiceStack.OrmLite/ServiceStack.OrmLite.Signed.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
</ItemGroup>
112112
<ItemGroup>
113113
<Compile Include="AliasNamingStrategy.cs" />
114-
<Compile Include="Async\async.cs" />
114+
<Compile Include="OrmLiteContext.cs" />
115115
<Compile Include="OrmLiteReadApiAsync.cs" />
116116
<Compile Include="Async\OrmLiteReadCommandExtensionsAsync.cs" />
117117
<Compile Include="Async\OrmLiteResultsFilterExtensionsAsync.cs" />
Lines changed: 254 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,254 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{FDC37335-9ECC-413B-BEC5-16B466B0E689}</ProjectGuid>
8+
<OutputType>Library</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>ServiceStack.OrmLite</RootNamespace>
11+
<AssemblyName>ServiceStack.OrmLite</AssemblyName>
12+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
</PropertyGroup>
15+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16+
<DebugSymbols>true</DebugSymbols>
17+
<DebugType>full</DebugType>
18+
<Optimize>false</Optimize>
19+
<OutputPath>bin\Debug\</OutputPath>
20+
<DefineConstants>DEBUG;TRACE</DefineConstants>
21+
<ErrorReport>prompt</ErrorReport>
22+
<WarningLevel>4</WarningLevel>
23+
</PropertyGroup>
24+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25+
<DebugType>pdbonly</DebugType>
26+
<Optimize>true</Optimize>
27+
<OutputPath>bin\Release\</OutputPath>
28+
<DefineConstants>TRACE;NET45</DefineConstants>
29+
<ErrorReport>prompt</ErrorReport>
30+
<WarningLevel>4</WarningLevel>
31+
</PropertyGroup>
32+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Signed|AnyCPU'">
33+
<OutputPath>bin\Signed\</OutputPath>
34+
<DefineConstants>TRACE;NET45</DefineConstants>
35+
<Optimize>true</Optimize>
36+
<DebugType>pdbonly</DebugType>
37+
<PlatformTarget>AnyCPU</PlatformTarget>
38+
<ErrorReport>prompt</ErrorReport>
39+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
40+
</PropertyGroup>
41+
<PropertyGroup>
42+
<SignAssembly>true</SignAssembly>
43+
</PropertyGroup>
44+
<PropertyGroup>
45+
<AssemblyOriginatorKeyFile>servicestack-sn.pfx</AssemblyOriginatorKeyFile>
46+
</PropertyGroup>
47+
<ItemGroup>
48+
<Reference Include="ServiceStack.Common">
49+
<HintPath>..\..\lib\signed\ServiceStack.Common.dll</HintPath>
50+
</Reference>
51+
<Reference Include="ServiceStack.Interfaces">
52+
<HintPath>..\..\lib\ServiceStack.Interfaces.dll</HintPath>
53+
</Reference>
54+
<Reference Include="ServiceStack.Text">
55+
<HintPath>..\..\lib\signed\ServiceStack.Text.dll</HintPath>
56+
</Reference>
57+
<Reference Include="System" />
58+
<Reference Include="System.ComponentModel.DataAnnotations" />
59+
<Reference Include="System.Core" />
60+
<Reference Include="System.Data" />
61+
</ItemGroup>
62+
<ItemGroup>
63+
<Compile Include="..\ServiceStack.OrmLite\AliasNamingStrategy.cs">
64+
<Link>AliasNamingStrategy.cs</Link>
65+
</Compile>
66+
<Compile Include="..\ServiceStack.OrmLite\Async\OrmLiteReadCommandExtensionsAsync.cs">
67+
<Link>Async\OrmLiteReadCommandExtensionsAsync.cs</Link>
68+
</Compile>
69+
<Compile Include="..\ServiceStack.OrmLite\Async\OrmLiteResultsFilterExtensionsAsync.cs">
70+
<Link>Async\OrmLiteResultsFilterExtensionsAsync.cs</Link>
71+
</Compile>
72+
<Compile Include="..\ServiceStack.OrmLite\Async\OrmLiteUtilExtensionsAsync.cs">
73+
<Link>Async\OrmLiteUtilExtensionsAsync.cs</Link>
74+
</Compile>
75+
<Compile Include="..\ServiceStack.OrmLite\Async\OrmLiteWriteCommandExtensionsAsync.cs">
76+
<Link>Async\OrmLiteWriteCommandExtensionsAsync.cs</Link>
77+
</Compile>
78+
<Compile Include="..\ServiceStack.OrmLite\Async\ReadExpressionCommandExtensionsAsync.cs">
79+
<Link>Async\ReadExpressionCommandExtensionsAsync.cs</Link>
80+
</Compile>
81+
<Compile Include="..\ServiceStack.OrmLite\Async\WriteExpressionCommandExtensionsAsync.cs">
82+
<Link>Async\WriteExpressionCommandExtensionsAsync.cs</Link>
83+
</Compile>
84+
<Compile Include="..\ServiceStack.OrmLite\Dapper\SqlMapper.cs">
85+
<Link>Dapper\SqlMapper.cs</Link>
86+
</Compile>
87+
<Compile Include="..\ServiceStack.OrmLite\DbTypes.cs">
88+
<Link>DbTypes.cs</Link>
89+
</Compile>
90+
<Compile Include="..\ServiceStack.OrmLite\Expressions\ParameterRebinder.cs">
91+
<Link>Expressions\ParameterRebinder.cs</Link>
92+
</Compile>
93+
<Compile Include="..\ServiceStack.OrmLite\Expressions\PredicateBuilder.cs">
94+
<Link>Expressions\PredicateBuilder.cs</Link>
95+
</Compile>
96+
<Compile Include="..\ServiceStack.OrmLite\Expressions\ReadExpressionCommandExtensions.cs">
97+
<Link>Expressions\ReadExpressionCommandExtensions.cs</Link>
98+
</Compile>
99+
<Compile Include="..\ServiceStack.OrmLite\Expressions\Sql.cs">
100+
<Link>Expressions\Sql.cs</Link>
101+
</Compile>
102+
<Compile Include="..\ServiceStack.OrmLite\Expressions\SqlExpression.cs">
103+
<Link>Expressions\SqlExpression.cs</Link>
104+
</Compile>
105+
<Compile Include="..\ServiceStack.OrmLite\Expressions\SqlExpression.Join.cs">
106+
<Link>Expressions\SqlExpression.Join.cs</Link>
107+
</Compile>
108+
<Compile Include="..\ServiceStack.OrmLite\Expressions\SqlExpressionVisitor.cs">
109+
<Link>Expressions\SqlExpressionVisitor.cs</Link>
110+
</Compile>
111+
<Compile Include="..\ServiceStack.OrmLite\Expressions\WriteExpressionCommandExtensions.cs">
112+
<Link>Expressions\WriteExpressionCommandExtensions.cs</Link>
113+
</Compile>
114+
<Compile Include="..\ServiceStack.OrmLite\FieldDefinition.cs">
115+
<Link>FieldDefinition.cs</Link>
116+
</Compile>
117+
<Compile Include="..\ServiceStack.OrmLite\INamingStrategy.cs">
118+
<Link>INamingStrategy.cs</Link>
119+
</Compile>
120+
<Compile Include="..\ServiceStack.OrmLite\IOrmLiteDialectProvider.cs">
121+
<Link>IOrmLiteDialectProvider.cs</Link>
122+
</Compile>
123+
<Compile Include="..\ServiceStack.OrmLite\IPropertyInvoker.cs">
124+
<Link>IPropertyInvoker.cs</Link>
125+
</Compile>
126+
<Compile Include="..\ServiceStack.OrmLite\IUntypedApi.cs">
127+
<Link>IUntypedApi.cs</Link>
128+
</Compile>
129+
<Compile Include="..\ServiceStack.OrmLite\JoinSqlBuilder.cs">
130+
<Link>JoinSqlBuilder.cs</Link>
131+
</Compile>
132+
<Compile Include="..\ServiceStack.OrmLite\ModelDefinition.cs">
133+
<Link>ModelDefinition.cs</Link>
134+
</Compile>
135+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteConfig.cs">
136+
<Link>OrmLiteConfig.cs</Link>
137+
</Compile>
138+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteConfigExtensions.cs">
139+
<Link>OrmLiteConfigExtensions.cs</Link>
140+
</Compile>
141+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteConnection.cs">
142+
<Link>OrmLiteConnection.cs</Link>
143+
</Compile>
144+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteConnectionFactory.cs">
145+
<Link>OrmLiteConnectionFactory.cs</Link>
146+
</Compile>
147+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteConnectionWrapper.cs">
148+
<Link>OrmLiteConnectionWrapper.cs</Link>
149+
</Compile>
150+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteContext.cs">
151+
<Link>OrmLiteContext.cs</Link>
152+
</Compile>
153+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteDialectProviderBase.cs">
154+
<Link>OrmLiteDialectProviderBase.cs</Link>
155+
</Compile>
156+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteDialectProviderExtensions.cs">
157+
<Link>OrmLiteDialectProviderExtensions.cs</Link>
158+
</Compile>
159+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteExecFilter.cs">
160+
<Link>OrmLiteExecFilter.cs</Link>
161+
</Compile>
162+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteNamingStrategyBase.cs">
163+
<Link>OrmLiteNamingStrategyBase.cs</Link>
164+
</Compile>
165+
<Compile Include="..\ServiceStack.OrmLite\OrmLitePersistenceProvider.cs">
166+
<Link>OrmLitePersistenceProvider.cs</Link>
167+
</Compile>
168+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteReadApi.cs">
169+
<Link>OrmLiteReadApi.cs</Link>
170+
</Compile>
171+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteReadApiAsync.cs">
172+
<Link>OrmLiteReadApiAsync.cs</Link>
173+
</Compile>
174+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteReadCommandExtensions.cs">
175+
<Link>OrmLiteReadCommandExtensions.cs</Link>
176+
</Compile>
177+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteReadExpressionsApi.cs">
178+
<Link>OrmLiteReadExpressionsApi.cs</Link>
179+
</Compile>
180+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteReadExpressionsApiAsync.cs">
181+
<Link>OrmLiteReadExpressionsApiAsync.cs</Link>
182+
</Compile>
183+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteResultsFilter.cs">
184+
<Link>OrmLiteResultsFilter.cs</Link>
185+
</Compile>
186+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteResultsFilterExtensions.cs">
187+
<Link>OrmLiteResultsFilterExtensions.cs</Link>
188+
</Compile>
189+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteSchemaApi.cs">
190+
<Link>OrmLiteSchemaApi.cs</Link>
191+
</Compile>
192+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteSchemaModifyApi.cs">
193+
<Link>OrmLiteSchemaModifyApi.cs</Link>
194+
</Compile>
195+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteSPStatement.cs">
196+
<Link>OrmLiteSPStatement.cs</Link>
197+
</Compile>
198+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteTransaction.cs">
199+
<Link>OrmLiteTransaction.cs</Link>
200+
</Compile>
201+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteUtilExtensions.cs">
202+
<Link>OrmLiteUtilExtensions.cs</Link>
203+
</Compile>
204+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteWriteApi.cs">
205+
<Link>OrmLiteWriteApi.cs</Link>
206+
</Compile>
207+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteWriteApiAsync.cs">
208+
<Link>OrmLiteWriteApiAsync.cs</Link>
209+
</Compile>
210+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteWriteCommandExtensions.cs">
211+
<Link>OrmLiteWriteCommandExtensions.cs</Link>
212+
</Compile>
213+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteWriteExpressionsApi.cs">
214+
<Link>OrmLiteWriteExpressionsApi.cs</Link>
215+
</Compile>
216+
<Compile Include="..\ServiceStack.OrmLite\OrmLiteWriteExpressionsApiAsync.cs">
217+
<Link>OrmLiteWriteExpressionsApiAsync.cs</Link>
218+
</Compile>
219+
<Compile Include="..\ServiceStack.OrmLite\PropertyInvoker.cs">
220+
<Link>PropertyInvoker.cs</Link>
221+
</Compile>
222+
<Compile Include="..\ServiceStack.OrmLite\ReflectionPropertyInvoker.cs">
223+
<Link>ReflectionPropertyInvoker.cs</Link>
224+
</Compile>
225+
<Compile Include="..\ServiceStack.OrmLite\SqlBuilder.cs">
226+
<Link>SqlBuilder.cs</Link>
227+
</Compile>
228+
<Compile Include="..\ServiceStack.OrmLite\SqlInValues.cs">
229+
<Link>SqlInValues.cs</Link>
230+
</Compile>
231+
<Compile Include="..\ServiceStack.OrmLite\Support\LoadList.cs">
232+
<Link>Support\LoadList.cs</Link>
233+
</Compile>
234+
<Compile Include="..\ServiceStack.OrmLite\Support\LoadReferences.cs">
235+
<Link>Support\LoadReferences.cs</Link>
236+
</Compile>
237+
<Compile Include="..\ServiceStack.OrmLite\UntypedApi.cs">
238+
<Link>UntypedApi.cs</Link>
239+
</Compile>
240+
<Compile Include="..\ServiceStack.OrmLite\UpperCaseNamingStrategy.cs">
241+
<Link>UpperCaseNamingStrategy.cs</Link>
242+
</Compile>
243+
<Compile Include="Properties\AssemblyInfo.cs" />
244+
</ItemGroup>
245+
<ItemGroup />
246+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
247+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
248+
Other similar extension points exist, see Microsoft.Common.targets.
249+
<Target Name="BeforeBuild">
250+
</Target>
251+
<Target Name="AfterBuild">
252+
</Target>
253+
-->
254+
</Project>

0 commit comments

Comments
 (0)