Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit9032b96

Browse files

File tree

7 files changed

+43
-43
lines changed

7 files changed

+43
-43
lines changed

‎.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ install:
3131
script:
3232
-export PYTHONPATH=`pwd`:$PYTHONPATH
3333
-python src/tests/runtests.py
34-
# - nunit-console src/embed_tests/bin/x64/ReleaseMono/Python.EmbeddingTest.dll
34+
# - nunit-console src/embed_tests/bin/Python.EmbeddingTest.dll
3535

3636
after_success:
3737
# Uncomment if need to geninterop, ie. py37 final

‎ci/appveyor_run_tests.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ $NUNIT = Resolve-Path .\packages\NUnit.ConsoleRunner*\tools\nunit3-console.exe
77
$PY=Get-Command python
88

99
# Can't use ".\build\*\Python.EmbeddingTest.dll". Missing framework files.
10-
$CS_TESTS=Resolve-Path.\src\embed_tests\bin\*\*\Python.EmbeddingTest.dll
11-
$RUNTIME_DIR=Resolve-Path.\src\runtime\bin\*\ReleaseWin\
10+
$CS_TESTS=".\src\embed_tests\bin\Python.EmbeddingTest.dll"
11+
$RUNTIME_DIR=".\src\runtime\bin\"
1212

1313
# Run python tests with C# coverage
1414
# why `2>&1 | %{ "$_" }`? see: http://stackoverflow.com/a/20950421/5208670

‎src/clrmodule/clrmodule.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,30 +17,30 @@
1717
</PropertyGroup>
1818
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'DebugMono|x86'">
1919
<DebugSymbols>true</DebugSymbols>
20-
<OutputPath>bin\x86\DebugMono\</OutputPath>
20+
<OutputPath>bin\</OutputPath>
2121
<DefineConstantsCondition="'$(DefineConstants)' == ''">TRACE;DEBUG;PYTHON2</DefineConstants>
2222
<DebugType>full</DebugType>
2323
<PlatformTarget>x86</PlatformTarget>
2424
<ErrorReport>prompt</ErrorReport>
2525
</PropertyGroup>
2626
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'DebugMono|x64'">
2727
<DebugSymbols>true</DebugSymbols>
28-
<OutputPath>bin\x64\DebugMono\</OutputPath>
28+
<OutputPath>bin\</OutputPath>
2929
<DefineConstantsCondition="'$(DefineConstants)' == ''">TRACE;DEBUG;PYTHON2</DefineConstants>
3030
<DebugType>full</DebugType>
3131
<PlatformTarget>x64</PlatformTarget>
3232
<ErrorReport>prompt</ErrorReport>
3333
</PropertyGroup>
3434
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'ReleaseMono|x86'">
35-
<OutputPath>bin\x86\ReleaseMono\</OutputPath>
35+
<OutputPath>bin\</OutputPath>
3636
<DefineConstantsCondition="'$(DefineConstants)' == ''">PYTHON2</DefineConstants>
3737
<Optimize>true</Optimize>
3838
<DebugType>pdbonly</DebugType>
3939
<PlatformTarget>x86</PlatformTarget>
4040
<ErrorReport>prompt</ErrorReport>
4141
</PropertyGroup>
4242
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'ReleaseMono|x64'">
43-
<OutputPath>bin\x64\ReleaseMono\</OutputPath>
43+
<OutputPath>bin\</OutputPath>
4444
<DefineConstantsCondition="'$(DefineConstants)' == ''">PYTHON2</DefineConstants>
4545
<Optimize>true</Optimize>
4646
<DebugType>pdbonly</DebugType>
@@ -49,30 +49,30 @@
4949
</PropertyGroup>
5050
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'DebugWin|x86'">
5151
<DebugSymbols>true</DebugSymbols>
52-
<OutputPath>bin\x86\DebugWin\</OutputPath>
52+
<OutputPath>bin\</OutputPath>
5353
<DefineConstantsCondition="'$(DefineConstants)' == ''">TRACE;DEBUG;PYTHON2</DefineConstants>
5454
<DebugType>full</DebugType>
5555
<PlatformTarget>x86</PlatformTarget>
5656
<ErrorReport>prompt</ErrorReport>
5757
</PropertyGroup>
5858
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'DebugWin|x64'">
5959
<DebugSymbols>true</DebugSymbols>
60-
<OutputPath>bin\x64\DebugWin\</OutputPath>
60+
<OutputPath>bin\</OutputPath>
6161
<DefineConstantsCondition="'$(DefineConstants)' == ''">TRACE;DEBUG;PYTHON2</DefineConstants>
6262
<DebugType>full</DebugType>
6363
<PlatformTarget>x64</PlatformTarget>
6464
<ErrorReport>prompt</ErrorReport>
6565
</PropertyGroup>
6666
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'ReleaseWin|x86'">
67-
<OutputPath>bin\x86\ReleaseWin\</OutputPath>
67+
<OutputPath>bin\</OutputPath>
6868
<DefineConstantsCondition="'$(DefineConstants)' == ''">PYTHON2</DefineConstants>
6969
<Optimize>true</Optimize>
7070
<DebugType>pdbonly</DebugType>
7171
<PlatformTarget>x86</PlatformTarget>
7272
<ErrorReport>prompt</ErrorReport>
7373
</PropertyGroup>
7474
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'ReleaseWin|x64'">
75-
<OutputPath>bin\x64\ReleaseWin\</OutputPath>
75+
<OutputPath>bin\</OutputPath>
7676
<DefineConstantsCondition="'$(DefineConstants)' == ''">PYTHON2</DefineConstants>
7777
<Optimize>true</Optimize>
7878
<DebugType>pdbonly</DebugType>

‎src/console/Console.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,22 @@
1717
</PropertyGroup>
1818
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'DebugMono|x86'">
1919
<DebugSymbols>true</DebugSymbols>
20-
<OutputPath>bin\x86\DebugMono\</OutputPath>
20+
<OutputPath>bin\</OutputPath>
2121
<DefineConstantsCondition="'$(DefineConstants)' == ''">DEBUG;TRACE</DefineConstants>
2222
<DebugType>full</DebugType>
2323
<PlatformTarget>x86</PlatformTarget>
2424
<ErrorReport>prompt</ErrorReport>
2525
</PropertyGroup>
2626
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'DebugMono|x64'">
2727
<DebugSymbols>true</DebugSymbols>
28-
<OutputPath>bin\x64\DebugMono\</OutputPath>
28+
<OutputPath>bin\</OutputPath>
2929
<DefineConstantsCondition="'$(DefineConstants)' == ''">DEBUG;TRACE</DefineConstants>
3030
<DebugType>full</DebugType>
3131
<PlatformTarget>x64</PlatformTarget>
3232
<ErrorReport>prompt</ErrorReport>
3333
</PropertyGroup>
3434
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'ReleaseMono|x86'">
35-
<OutputPath>bin\x86\ReleaseMono\</OutputPath>
35+
<OutputPath>bin\</OutputPath>
3636
<DefineConstantsCondition="'$(DefineConstants)' == ''">
3737
</DefineConstants>
3838
<Optimize>true</Optimize>
@@ -41,7 +41,7 @@
4141
<ErrorReport>prompt</ErrorReport>
4242
</PropertyGroup>
4343
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'ReleaseMono|x64'">
44-
<OutputPath>bin\x64\ReleaseMono\</OutputPath>
44+
<OutputPath>bin\</OutputPath>
4545
<DefineConstantsCondition="'$(DefineConstants)' == ''">
4646
</DefineConstants>
4747
<Optimize>true</Optimize>
@@ -51,22 +51,22 @@
5151
</PropertyGroup>
5252
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'DebugWin|x86'">
5353
<DebugSymbols>true</DebugSymbols>
54-
<OutputPath>bin\x86\DebugWin\</OutputPath>
54+
<OutputPath>bin\</OutputPath>
5555
<DefineConstantsCondition="'$(DefineConstants)' == ''">DEBUG;TRACE</DefineConstants>
5656
<DebugType>full</DebugType>
5757
<PlatformTarget>x86</PlatformTarget>
5858
<ErrorReport>prompt</ErrorReport>
5959
</PropertyGroup>
6060
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'DebugWin|x64'">
6161
<DebugSymbols>true</DebugSymbols>
62-
<OutputPath>bin\x64\DebugWin\</OutputPath>
62+
<OutputPath>bin\</OutputPath>
6363
<DefineConstantsCondition="'$(DefineConstants)' == ''">DEBUG;TRACE</DefineConstants>
6464
<DebugType>full</DebugType>
6565
<PlatformTarget>x64</PlatformTarget>
6666
<ErrorReport>prompt</ErrorReport>
6767
</PropertyGroup>
6868
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'ReleaseWin|x86'">
69-
<OutputPath>bin\x86\ReleaseWin\</OutputPath>
69+
<OutputPath>bin\</OutputPath>
7070
<DefineConstantsCondition="'$(DefineConstants)' == ''">
7171
</DefineConstants>
7272
<Optimize>true</Optimize>
@@ -75,7 +75,7 @@
7575
<ErrorReport>prompt</ErrorReport>
7676
</PropertyGroup>
7777
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'ReleaseWin|x64'">
78-
<OutputPath>bin\x64\ReleaseWin\</OutputPath>
78+
<OutputPath>bin\</OutputPath>
7979
<DefineConstantsCondition="'$(DefineConstants)' == ''">
8080
</DefineConstants>
8181
<Optimize>true</Optimize>

‎src/embed_tests/Python.EmbeddingTest.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,22 @@
1515
</PropertyGroup>
1616
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'DebugMono|x86'">
1717
<DebugSymbols>true</DebugSymbols>
18-
<OutputPath>bin\x86\DebugMono\</OutputPath>
18+
<OutputPath>bin\</OutputPath>
1919
<DefineConstantsCondition="'$(DefineConstants)' == ''">DEBUG;TRACE</DefineConstants>
2020
<DebugType>full</DebugType>
2121
<PlatformTarget>x86</PlatformTarget>
2222
<ErrorReport>prompt</ErrorReport>
2323
</PropertyGroup>
2424
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'DebugMono|x64'">
2525
<DebugSymbols>true</DebugSymbols>
26-
<OutputPath>bin\x64\DebugMono\</OutputPath>
26+
<OutputPath>bin\</OutputPath>
2727
<DefineConstantsCondition="'$(DefineConstants)' == ''">DEBUG;TRACE</DefineConstants>
2828
<DebugType>full</DebugType>
2929
<PlatformTarget>x64</PlatformTarget>
3030
<ErrorReport>prompt</ErrorReport>
3131
</PropertyGroup>
3232
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'ReleaseMono|x86'">
33-
<OutputPath>bin\x86\ReleaseMono\</OutputPath>
33+
<OutputPath>bin\</OutputPath>
3434
<DefineConstantsCondition="'$(DefineConstants)' == ''">
3535
</DefineConstants>
3636
<Optimize>true</Optimize>
@@ -39,7 +39,7 @@
3939
<ErrorReport>prompt</ErrorReport>
4040
</PropertyGroup>
4141
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'ReleaseMono|x64'">
42-
<OutputPath>bin\x64\ReleaseMono\</OutputPath>
42+
<OutputPath>bin\</OutputPath>
4343
<DefineConstantsCondition="'$(DefineConstants)' == ''">
4444
</DefineConstants>
4545
<Optimize>true</Optimize>
@@ -49,22 +49,22 @@
4949
</PropertyGroup>
5050
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'DebugWin|x86'">
5151
<DebugSymbols>true</DebugSymbols>
52-
<OutputPath>bin\x86\DebugWin\</OutputPath>
52+
<OutputPath>bin\</OutputPath>
5353
<DefineConstantsCondition="'$(DefineConstants)' == ''">DEBUG;TRACE</DefineConstants>
5454
<DebugType>full</DebugType>
5555
<PlatformTarget>x86</PlatformTarget>
5656
<ErrorReport>prompt</ErrorReport>
5757
</PropertyGroup>
5858
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'DebugWin|x64'">
5959
<DebugSymbols>true</DebugSymbols>
60-
<OutputPath>bin\x64\DebugWin\</OutputPath>
60+
<OutputPath>bin\</OutputPath>
6161
<DefineConstantsCondition="'$(DefineConstants)' == ''">DEBUG;TRACE</DefineConstants>
6262
<DebugType>full</DebugType>
6363
<PlatformTarget>x64</PlatformTarget>
6464
<ErrorReport>prompt</ErrorReport>
6565
</PropertyGroup>
6666
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'ReleaseWin|x86'">
67-
<OutputPath>bin\x86\ReleaseWin\</OutputPath>
67+
<OutputPath>bin\</OutputPath>
6868
<DefineConstantsCondition="'$(DefineConstants)' == ''">
6969
</DefineConstants>
7070
<Optimize>true</Optimize>
@@ -73,7 +73,7 @@
7373
<ErrorReport>prompt</ErrorReport>
7474
</PropertyGroup>
7575
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'ReleaseWin|x64'">
76-
<OutputPath>bin\x64\ReleaseWin\</OutputPath>
76+
<OutputPath>bin\</OutputPath>
7777
<DefineConstantsCondition="'$(DefineConstants)' == ''">
7878
</DefineConstants>
7979
<Optimize>true</Optimize>

‎src/runtime/Python.Runtime.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,31 +12,31 @@
1212
<PythonBuildDirCondition=" '$(PythonBuildDir)' == ''">$(SolutionDir)</PythonBuildDir>
1313
</PropertyGroup>
1414
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'ReleaseMono|x86'">
15-
<OutputPath>bin\x86\ReleaseMono\</OutputPath>
15+
<OutputPath>bin\</OutputPath>
1616
<DefineConstantsCondition="'$(DefineConstants)' == ''">PYTHON2;PYTHON27;UCS4</DefineConstants>
1717
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1818
<Optimize>true</Optimize>
1919
<DebugType>pdbonly</DebugType>
2020
<PlatformTarget>x86</PlatformTarget>
2121
</PropertyGroup>
2222
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'ReleaseMono|x64'">
23-
<OutputPath>bin\x64\ReleaseMono\</OutputPath>
23+
<OutputPath>bin\</OutputPath>
2424
<DefineConstantsCondition="'$(DefineConstants)' == ''">PYTHON2;PYTHON27;UCS4</DefineConstants>
2525
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2626
<Optimize>true</Optimize>
2727
<DebugType>pdbonly</DebugType>
2828
<PlatformTarget>x64</PlatformTarget>
2929
</PropertyGroup>
3030
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'ReleaseWin|x86'">
31-
<OutputPath>bin\x86\ReleaseWin\</OutputPath>
31+
<OutputPath>bin\</OutputPath>
3232
<DefineConstantsCondition="'$(DefineConstants)' == ''">PYTHON2;PYTHON27;UCS2</DefineConstants>
3333
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
3434
<Optimize>true</Optimize>
3535
<DebugType>pdbonly</DebugType>
3636
<PlatformTarget>x86</PlatformTarget>
3737
</PropertyGroup>
3838
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'ReleaseWin|x64'">
39-
<OutputPath>bin\x64\ReleaseWin\</OutputPath>
39+
<OutputPath>bin\</OutputPath>
4040
<DefineConstantsCondition="'$(DefineConstants)' == ''">PYTHON2;PYTHON27;UCS2</DefineConstants>
4141
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
4242
<Optimize>true</Optimize>
@@ -45,7 +45,7 @@
4545
</PropertyGroup>
4646
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'DebugMono|x86'">
4747
<DebugSymbols>true</DebugSymbols>
48-
<OutputPath>bin\x86\DebugMono\</OutputPath>
48+
<OutputPath>bin\</OutputPath>
4949
<DefineConstantsCondition="'$(DefineConstants)' == ''">TRACE;DEBUG;PYTHON2;PYTHON27;UCS4</DefineConstants>
5050
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
5151
<Optimize>false</Optimize>
@@ -54,7 +54,7 @@
5454
</PropertyGroup>
5555
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'DebugMono|x64'">
5656
<DebugSymbols>true</DebugSymbols>
57-
<OutputPath>bin\x64\DebugMono\</OutputPath>
57+
<OutputPath>bin\</OutputPath>
5858
<DefineConstantsCondition="'$(DefineConstants)' == ''">TRACE;DEBUG;PYTHON2;PYTHON27;UCS4</DefineConstants>
5959
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
6060
<Optimize>false</Optimize>
@@ -63,7 +63,7 @@
6363
</PropertyGroup>
6464
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'DebugWin|x86'">
6565
<DebugSymbols>true</DebugSymbols>
66-
<OutputPath>bin\x86\DebugWin\</OutputPath>
66+
<OutputPath>bin\</OutputPath>
6767
<DefineConstantsCondition="'$(DefineConstants)' == ''">TRACE;DEBUG;PYTHON2;PYTHON27;UCS2</DefineConstants>
6868
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
6969
<Optimize>false</Optimize>
@@ -72,7 +72,7 @@
7272
</PropertyGroup>
7373
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'DebugWin|x64'">
7474
<DebugSymbols>true</DebugSymbols>
75-
<OutputPath>bin\x64\DebugWin\</OutputPath>
75+
<OutputPath>bin\</OutputPath>
7676
<DefineConstantsCondition="'$(DefineConstants)' == ''">TRACE;DEBUG;PYTHON2;PYTHON27;UCS2</DefineConstants>
7777
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
7878
<Optimize>false</Optimize>

‎src/testing/Python.Test.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,22 @@
1616
</PropertyGroup>
1717
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'DebugMono|x86'">
1818
<DebugSymbols>true</DebugSymbols>
19-
<OutputPath>bin\x86\DebugMono\</OutputPath>
19+
<OutputPath>bin\</OutputPath>
2020
<DefineConstantsCondition="'$(DefineConstants)' == ''">DEBUG;TRACE</DefineConstants>
2121
<DebugType>full</DebugType>
2222
<PlatformTarget>x86</PlatformTarget>
2323
<ErrorReport>prompt</ErrorReport>
2424
</PropertyGroup>
2525
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'DebugMono|x64'">
2626
<DebugSymbols>true</DebugSymbols>
27-
<OutputPath>bin\x64\DebugMono\</OutputPath>
27+
<OutputPath>bin\</OutputPath>
2828
<DefineConstantsCondition="'$(DefineConstants)' == ''">DEBUG;TRACE</DefineConstants>
2929
<DebugType>full</DebugType>
3030
<PlatformTarget>x64</PlatformTarget>
3131
<ErrorReport>prompt</ErrorReport>
3232
</PropertyGroup>
3333
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'ReleaseMono|x86'">
34-
<OutputPath>bin\x86\ReleaseMono\</OutputPath>
34+
<OutputPath>bin\</OutputPath>
3535
<DefineConstantsCondition="'$(DefineConstants)' == ''">
3636
</DefineConstants>
3737
<Optimize>true</Optimize>
@@ -40,7 +40,7 @@
4040
<ErrorReport>prompt</ErrorReport>
4141
</PropertyGroup>
4242
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'ReleaseMono|x64'">
43-
<OutputPath>bin\x64\ReleaseMono\</OutputPath>
43+
<OutputPath>bin\</OutputPath>
4444
<DefineConstantsCondition="'$(DefineConstants)' == ''">
4545
</DefineConstants>
4646
<Optimize>true</Optimize>
@@ -50,22 +50,22 @@
5050
</PropertyGroup>
5151
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'DebugWin|x86'">
5252
<DebugSymbols>true</DebugSymbols>
53-
<OutputPath>bin\x86\DebugWin\</OutputPath>
53+
<OutputPath>bin\</OutputPath>
5454
<DefineConstantsCondition="'$(DefineConstants)' == ''">DEBUG;TRACE</DefineConstants>
5555
<DebugType>full</DebugType>
5656
<PlatformTarget>x86</PlatformTarget>
5757
<ErrorReport>prompt</ErrorReport>
5858
</PropertyGroup>
5959
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'DebugWin|x64'">
6060
<DebugSymbols>true</DebugSymbols>
61-
<OutputPath>bin\x64\DebugWin\</OutputPath>
61+
<OutputPath>bin\</OutputPath>
6262
<DefineConstantsCondition="'$(DefineConstants)' == ''">DEBUG;TRACE</DefineConstants>
6363
<DebugType>full</DebugType>
6464
<PlatformTarget>x64</PlatformTarget>
6565
<ErrorReport>prompt</ErrorReport>
6666
</PropertyGroup>
6767
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'ReleaseWin|x86'">
68-
<OutputPath>bin\x86\ReleaseWin\</OutputPath>
68+
<OutputPath>bin\</OutputPath>
6969
<DefineConstantsCondition="'$(DefineConstants)' == ''">
7070
</DefineConstants>
7171
<Optimize>true</Optimize>
@@ -74,7 +74,7 @@
7474
<ErrorReport>prompt</ErrorReport>
7575
</PropertyGroup>
7676
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'ReleaseWin|x64'">
77-
<OutputPath>bin\x64\ReleaseWin\</OutputPath>
77+
<OutputPath>bin\</OutputPath>
7878
<DefineConstantsCondition="'$(DefineConstants)' == ''">
7979
</DefineConstants>
8080
<Optimize>true</Optimize>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp