Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typo and target framework semantics of the testlinq project. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | vs2012 |
Files: | files | file ages | folders |
SHA1: |
1c8f902e08a084ab7969b15e8efd4da8 |
User & Date: | mistachkin 2012-09-14 11:46:52 |
Context
2012-09-14
| ||
12:10 | Update known-good test logs to account for code changes in the design-time installer. Closed-Leaf check-in: 475d6d60f6 user: mistachkin tags: vs2012 | |
11:46 | Fix typo and target framework semantics of the testlinq project. check-in: 1c8f902e08 user: mistachkin tags: vs2012 | |
11:38 | Add support for manually overriding the .NET Framework version used to add the DbProviderFactory from the design-time installer. check-in: eadd1922b6 user: mistachkin tags: vs2012 | |
Changes
Changes to SQLite.NET.targets.
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
..
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
<Exec Condition="'$(DirForStrongName)' != '' And
HasTrailingSlash('$(DirForStrongName)') And
Exists('$(DirForStrongName)bin\sn.exe')"
Command=""$(DirForStrongName)bin\sn.exe" -Ra "$(TargetPath)" "$(AssemblyOriginatorKeyFile)"" />
<Touch Condition="'$(DirForStrongName)' != '' And
HasTrailingSlash('$(DirForStrongName)') And
Exists('$(DirForStrongName)bin\sn.exe')"
AlwaysCreate="true"
Files="$(TargetPath).StrongNameSign.done" />
</Target>
<!--
******************************************************************************
-->
................................................................................
Outputs="$(TargetPath).StrongNameSign.done">
<Exec Condition="'$(TargetFrameworkSDKToolsDirectory)' != '' And
HasTrailingSlash('$(TargetFrameworkSDKToolsDirectory)') And
Exists('$(TargetFrameworkSDKToolsDirectory)sn.exe')"
Command=""$(TargetFrameworkSDKToolsDirectory)sn.exe" -Ra "$(TargetPath)" "$(AssemblyOriginatorKeyFile)"" />
<Touch Condition="'$(TargetFrameworkSDKToolsDirectory)' != '' And
HasTrailingSlash('$(TargetFrameworkSDKToolsDirectory)') And
Exists('$(TargetFrameworkSDKToolsDirectory)sn.exe')"
AlwaysCreate="true"
Files="$(TargetPath).StrongNameSign.done" />
</Target>
<!--
******************************************************************************
-->
|
|
|
|
|
|
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
..
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
<Exec Condition="'$(DirForStrongName)' != '' And HasTrailingSlash('$(DirForStrongName)') And Exists('$(DirForStrongName)bin\sn.exe')" Command=""$(DirForStrongName)bin\sn.exe" -Ra "$(TargetPath)" "$(AssemblyOriginatorKeyFile)"" /> <Touch Condition="'$(DirForStrongName)' != '' And HasTrailingSlash('$(DirForStrongName)') And Exists('$(DirForStrongName)bin\sn.exe')" AlwaysCreate="true" Files="$(TargetPath).StrongNameSign.done" /> </Target> <!-- ****************************************************************************** --> ................................................................................ Outputs="$(TargetPath).StrongNameSign.done"> <Exec Condition="'$(TargetFrameworkSDKToolsDirectory)' != '' And HasTrailingSlash('$(TargetFrameworkSDKToolsDirectory)') And Exists('$(TargetFrameworkSDKToolsDirectory)sn.exe')" Command=""$(TargetFrameworkSDKToolsDirectory)sn.exe" -Ra "$(TargetPath)" "$(AssemblyOriginatorKeyFile)"" /> <Touch Condition="'$(TargetFrameworkSDKToolsDirectory)' != '' And HasTrailingSlash('$(TargetFrameworkSDKToolsDirectory)') And Exists('$(TargetFrameworkSDKToolsDirectory)sn.exe')" AlwaysCreate="true" Files="$(TargetPath).StrongNameSign.done" /> </Target> <!-- ****************************************************************************** --> |
Changes to testlinq/testlinq.2012.csproj.
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
<ItemGroup> <Compile Condition="'$(TargetFrameworkVersion)' == 'v3.5'" Include="NorthwindModel2008.Designer.cs"> <AutoGen>True</AutoGen> <DesignTime>True</DesignTime> <DependentUpon>NorthwindModel2008.edmx</DependentUpon> </Compile> <Compile Condition="'$(TargetFrameworkVersion)' == 'v4.0'" Include="NorthwindModel2010.Designer.cs"> <AutoGen>True</AutoGen> <DesignTime>True</DesignTime> <DependentUpon>NorthwindModel2010.edmx</DependentUpon> </Compile> <Compile Condition="'$(TargetFrameworkVersion)' == 'v4.5'" Include="NorthwindModel2012.Designer.cs"> <AutoGen>True</AutoGen> <DesignTime>True</DesignTime> <DependentUpon>NorthwindModel2012.edmx</DependentUpon> </Compile> <Compile Include="Program.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> </ItemGroup> <ItemGroup> <None Condition="'$(TargetFrameworkVersion)' == 'v3.5'" Include="2008\App.Config" /> <None Condition="'$(TargetFrameworkVersion)' == 'v4.0'" Include="2010\App.Config" /> <None Condition="'$(TargetFrameworkVersion)' == 'v4.5'" Include="2012\App.Config" /> <None Include="northwindEF.db"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> </None> <EntityDeploy Condition="'$(TargetFrameworkVersion)' == 'v3.5'" Include="NorthwindModel2008.edmx"> <Generator>EntityModelCodeGenerator</Generator> <LastGenOutput>NorthwindModel2008.Designer.cs</LastGenOutput> </EntityDeploy> <EntityDeploy Condition="'$(TargetFrameworkVersion)' == 'v4.0'" Include="NorthwindModel2010.edmx"> <Generator>EntityModelCodeGenerator</Generator> <LastGenOutput>NorthwindModel2010.Designer.cs</LastGenOutput> </EntityDeploy> <EntityDeploy Condition="'$(TargetFrameworkVersion)' == 'v4.5'" Include="NorthwindModel2012.edmx"> <Generator>EntityModelCodeGenerator</Generator> <LastGenOutput>NorthwindModel2012.Designer.cs</LastGenOutput> </EntityDeploy> </ItemGroup> <ItemGroup> <Service Include="{C8F2D6AC-F9F4-4E40-A399-22F9A9A5CBD2}" /> |
| < < < < < | | < | | < < < < | |
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
<ItemGroup> <Compile Condition="'$(TargetFrameworkVersion)' == 'v3.5'" Include="NorthwindModel2008.Designer.cs"> <AutoGen>True</AutoGen> <DesignTime>True</DesignTime> <DependentUpon>NorthwindModel2008.edmx</DependentUpon> </Compile> <Compile Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5'" Include="NorthwindModel2012.Designer.cs"> <AutoGen>True</AutoGen> <DesignTime>True</DesignTime> <DependentUpon>NorthwindModel2012.edmx</DependentUpon> </Compile> <Compile Include="Program.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> </ItemGroup> <ItemGroup> <None Condition="'$(TargetFrameworkVersion)' == 'v3.5'" Include="2008\App.Config" /> <None Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5'" Include="2012\App.Config" /> <None Include="northwindEF.db"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> </None> <EntityDeploy Condition="'$(TargetFrameworkVersion)' == 'v3.5'" Include="NorthwindModel2008.edmx"> <Generator>EntityModelCodeGenerator</Generator> <LastGenOutput>NorthwindModel2008.Designer.cs</LastGenOutput> </EntityDeploy> <EntityDeploy Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5'" Include="NorthwindModel2012.edmx"> <Generator>EntityModelCodeGenerator</Generator> <LastGenOutput>NorthwindModel2012.Designer.cs</LastGenOutput> </EntityDeploy> </ItemGroup> <ItemGroup> <Service Include="{C8F2D6AC-F9F4-4E40-A399-22F9A9A5CBD2}" /> |
Changes to tools/install/Installer.cs.
2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 |
return false; continue; } configuration.noVs2012 = (bool)value; } if (MatchOption(newArg, "registryVersion")) { configuration.registryVersion = text; } else if (MatchOption(newArg, "strict")) { bool? value = ParseBoolean(text); |
| |
2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 |
return false;
continue;
}
configuration.noVs2012 = (bool)value;
}
else if (MatchOption(newArg, "registryVersion"))
{
configuration.registryVersion = text;
}
else if (MatchOption(newArg, "strict"))
{
bool? value = ParseBoolean(text);
|