Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dotnet core 2.0 port #895

Open
wants to merge 45 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
a7e923a
porting to dotnet core 2.0.
Dec 21, 2017
704396a
config work.
Dec 21, 2017
945d38b
:wrench: tiny nincy fixes.
Dec 21, 2017
7f1f59d
:wrench: nancy fixes.
Dec 21, 2017
0adf31b
:wrench: moved /web to root.
Dec 21, 2017
465a7c2
:wrench: removed nancy metrics.
Dec 21, 2017
0385904
Custom errors fix.
Dec 21, 2017
c26fa43
:wrench: updated mysql package.
Dec 21, 2017
3990bb4
:wrench: fixing tests.
Dec 21, 2017
cc7910c
:wrench: fixed tests.
Dec 21, 2017
5d49807
:wrench: use dotnet in circle.ci tests.
Dec 21, 2017
3544611
:wrench: xopy fix.
Dec 21, 2017
9daba80
another xcopy fix.
Dec 21, 2017
09dc857
fix
Dec 21, 2017
84c8f86
fix
Dec 21, 2017
0d17925
build fix
Dec 21, 2017
23956e8
:tada: updated version to 0.2.7.0.
Dec 21, 2017
05fcd01
fix back.
Dec 21, 2017
3691508
fix
Dec 21, 2017
0e4aeff
fix
Dec 21, 2017
3ced7fa
fix
Dec 21, 2017
355f7e9
xcopy fix.
Dec 21, 2017
e0a8e88
fix
Dec 21, 2017
897c0de
fix
Dec 21, 2017
0d982ad
fix
Dec 22, 2017
6ec45fa
CI build fix.
Dec 22, 2017
d2e0e7f
fix.
Dec 22, 2017
f1acb3c
nancy work.
Dec 27, 2017
693d3c9
razor work
Dec 27, 2017
e626456
more work.
Jan 4, 2018
1a83d99
more work
Jan 4, 2018
c9d2f36
fix.
Jan 4, 2018
7dde3a9
fix
Jan 4, 2018
260771c
fix.
Jan 4, 2018
c663dc1
fixed tests.
Jan 4, 2018
434b6b8
fix.
Jan 4, 2018
bf3a343
Merge branch 'develop' into feature/dotnet-core
Jan 4, 2018
06e2635
fix
Jan 4, 2018
ba79d32
fix
Jan 4, 2018
e430025
fix
Jan 4, 2018
f0455cf
Merge branch 'develop' into feature/dotnet-core
Jan 4, 2018
2113c77
fix.
Jan 4, 2018
d91bfd5
fix
Jan 4, 2018
7f55ed5
fix
Jan 4, 2018
3766384
fix tests.
Jan 23, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
xcopy fix.
huseyin uslu committed Dec 21, 2017
commit 355f7e98d823a8185ad3f8671ba25696aed8d5d4
2 changes: 1 addition & 1 deletion src/CoiniumServ/CoiniumServ.csproj
Original file line number Diff line number Diff line change
@@ -54,7 +54,7 @@
</ItemGroup>

<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy /yS&quot;$(SolutionDir)config\*quot; quot;$(ProjectDir)$(OutDir)config\*quot;&#xD;&#xA; xcopy /yS quot;$(SolutionDir)web\*quot;&quot;$(ProjectDir)$(OutDir)web\*quot;" />
<Exec Command="xcopy /YS &quot;$(SolutionDir)config&quot; &quot;$(ProjectDir)$(OutDir)config/*&quot; &#xD;&#xA;xcopy /YS &quot;$(SolutionDir)web&quot; &quot;$(ProjectDir)$(OutDir)web/*&quot;" />
</Target>

</Project>