-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
massaging and refactoring all over the place
git-svn-id: https://slps.svn.sourceforge.net/svnroot/slps@217 ab42f6e0-554d-0410-b580-99e487e6eeb2
- Loading branch information
1 parent
65c4ff1
commit 8640769
Showing
9 changed files
with
23 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<StartArguments>..\..\..\..\repository\factorial.xml ..\..\temp.txt</StartArguments> | ||
<StartArguments>..\shared\factorial.xml temp.txt</StartArguments> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<StartArguments>..\..\..\..\repository\factorial.xml ..\..\temp.txt</StartArguments> | ||
<StartArguments>..\shared\factorial.xml temp.txt</StartArguments> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<StartArguments>..\..\..\..\repository\factorial.xml ..\..\temp.txt</StartArguments> | ||
<StartArguments>..\shared\factorial.xml temp.txt</StartArguments> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<StartArguments>..\..\..\..\repository\factorial.xml ..\..\temp.txt</StartArguments> | ||
<StartArguments>..\shared\factorial.xml temp.txt</StartArguments> | ||
</PropertyGroup> | ||
</Project> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
shared = ../shared | ||
xsd = ../xsd | ||
factorial = ${shared}/factorial.txt | ||
xfactorial = ${xsd}/factorial.xml | ||
xfactorial = ${shared}/factorial.xml | ||
temp = temp.txt | ||
schema = ${xsd}/fl.xsd | ||
apply = ${shared}/fac5.txt | ||
xapply = ${xsd}/fac5.xml | ||
xapply = ${shared}/fac5.xml | ||
unoptimized = ${shared}/sample88a.txt | ||
optimized = ${shared}/sample88b.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
build: | ||
|
||
test: | ||
ls -1 *.xml | xargs java -jar ../../../download/msv/msv.jar fl.xsd | ||
ls -1 ../shared/*.xml | xargs java -jar ../../../download/msv/msv.jar fl.xsd | ||
|