| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 6f3ef30 commit dc7614d
3 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,21 @@ | |||
| 1 | + <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | + <VisualState xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ShowCheckBoxes="true"> | ||
| 3 | + <TopNode>[0-1000]C:\Users\Barton\Documents\Visual Studio 2008\Projects\PySharp\trunk\pythonnet\src\embed_tests\Embeddingtest.nunit</TopNode> | ||
| 4 | + <SelectedNode>[0-1003]Python.EmbeddingTest.PyImportTest</SelectedNode> | ||
| 5 | + <ExcludeCategories>false</ExcludeCategories> | ||
| 6 | + <Nodes> | ||
| 7 | + <Node UniqueName="[0-1000]C:\Users\Barton\Documents\Visual Studio 2008\Projects\PySharp\trunk\pythonnet\src\embed_tests\Embeddingtest.nunit" Expanded="true" Checked="true" /> | ||
| 8 | + <Node UniqueName="[0-1010]C:\Users\Barton\Documents\Visual Studio 2008\Projects\PySharp\trunk\pythonnet\src\embed_tests\bin\Debug\Python.EmbeddingTest.dll" Expanded="true" Checked="true" /> | ||
| 9 | + <Node UniqueName="[0-1011]Python" Expanded="true" Checked="true" /> | ||
| 10 | + <Node UniqueName="[0-1012]Python.EmbeddingTest" Expanded="true" Checked="true" /> | ||
| 11 | + <Node UniqueName="[0-1003]Python.EmbeddingTest.PyImportTest" Expanded="true" Checked="true" /> | ||
| 12 | + <Node UniqueName="[0-1004]Python.EmbeddingTest.PyImportTest.TestDottedName" Checked="true" /> | ||
| 13 | + <Node UniqueName="[0-1001]Python.EmbeddingTest.PyIterTest" Expanded="true" Checked="true" /> | ||
| 14 | + <Node UniqueName="[0-1002]Python.EmbeddingTest.PyIterTest.TestOnPyList" Checked="true" /> | ||
| 15 | + <Node UniqueName="[0-1008]Python.EmbeddingTest.PyObjectTest" Expanded="true" Checked="true" /> | ||
| 16 | + <Node UniqueName="[0-1009]Python.EmbeddingTest.PyObjectTest.TestUnicode" Checked="true" /> | ||
| 17 | + <Node UniqueName="[0-1005]Python.EmbeddingTest.PythonExceptionTest" Expanded="true" Checked="true" /> | ||
| 18 | + <Node UniqueName="[0-1006]Python.EmbeddingTest.PythonExceptionTest.TestMessage" Checked="true" /> | ||
| 19 | + <Node UniqueName="[0-1007]Python.EmbeddingTest.PythonExceptionTest.TestNoError" Checked="true" /> | ||
| 20 | + </Nodes> | ||
| 21 | + </VisualState> | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -28,6 +28,7 @@ | |||
| 28 | 28 | <IsWebBootstrapper>false</IsWebBootstrapper> | |
| 29 | 29 | <UseApplicationTrust>false</UseApplicationTrust> | |
| 30 | 30 | <BootstrapperEnabled>true</BootstrapperEnabled> | |
| 31 | + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> | ||
| 31 | 32 | </PropertyGroup> | |
| 32 | 33 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |
| 33 | 34 | <DebugSymbols>true</DebugSymbols> | |
@@ -57,8 +58,11 @@ | |||
| 57 | 58 | <PlatformTarget>AnyCPU</PlatformTarget> | |
| 58 | 59 | </PropertyGroup> | |
| 59 | 60 | <ItemGroup> | |
| 60 | - <Reference Include="nunit.framework, Version=2.5.5.10112, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL" /> | ||
| 61 | + <Reference Include="nunit.framework, Version=2.5.9.10348, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL" /> | ||
| 61 | 62 | <Reference Include="System" /> | |
| 63 | + <Reference Include="System.Core"> | ||
| 64 | + <RequiredTargetFramework>3.5</RequiredTargetFramework> | ||
| 65 | + </Reference> | ||
| 62 | 66 | </ItemGroup> | |
| 63 | 67 | <ItemGroup> | |
| 64 | 68 | <None Include="Embeddingtest.nunit" /> | |
@@ -71,12 +75,6 @@ | |||
| 71 | 75 | <Compile Include="pyobject.cs" /> | |
| 72 | 76 | <Compile Include="pythonexception.cs" /> | |
| 73 | 77 | </ItemGroup> | |
| 74 | - <ItemGroup> | ||
| 75 | - <ProjectReference Include="..\runtime\Python.Runtime.csproj"> | ||
| 76 | - <Project>{097B4AC0-74E9-4C58-BCF8-C69746EC8271}</Project> | ||
| 77 | - <Name>Python.Runtime</Name> | ||
| 78 | - </ProjectReference> | ||
| 79 | - </ItemGroup> | ||
| 80 | 78 | <ItemGroup> | |
| 81 | 79 | <BootstrapperPackage Include="Microsoft.Net.Framework.2.0"> | |
| 82 | 80 | <Visible>False</Visible> | |
@@ -94,6 +92,12 @@ | |||
| 94 | 92 | <Install>false</Install> | |
| 95 | 93 | </BootstrapperPackage> | |
| 96 | 94 | </ItemGroup> | |
| 95 | + <ItemGroup> | ||
| 96 | + <ProjectReference Include="..\runtime\Python.Runtime.csproj"> | ||
| 97 | + <Project>{097B4AC0-74E9-4C58-BCF8-C69746EC8271}</Project> | ||
| 98 | + <Name>Python.Runtime</Name> | ||
| 99 | + </ProjectReference> | ||
| 100 | + </ItemGroup> | ||
| 97 | 101 | <Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" /> | |
| 98 | 102 | <ProjectExtensions> | |
| 99 | 103 | <VisualStudio AllowExistingFolder="true" /> | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -24,7 +24,7 @@ public void SetUp() | |||
| 24 | 24 | * Append the tests directory to sys.path | |
| 25 | 25 | * using reflection to circumvent the private modifires placed on most Runtime methods. | |
| 26 | 26 | */ | |
| 27 | - string s = @"..\..\..\tests"; | ||
| 27 | + string s = @"../../../tests"; | ||
| 28 | 28 | ||
| 29 | 29 | Type RTClass = typeof(Runtime.Runtime); | |
| 30 | 30 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments