New project: Bottle
Before Width: | Height: | Size: 7.7 KiB After Width: | Height: | Size: 7.7 KiB |
Before Width: | Height: | Size: 318 B After Width: | Height: | Size: 318 B |
Before Width: | Height: | Size: 562 B After Width: | Height: | Size: 562 B |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 827 B After Width: | Height: | Size: 827 B |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 4.8 KiB |
BIN
source/Bottle/icon/Bottle.ico
Normal file
After Width: | Height: | Size: 228 KiB |
Before Width: | Height: | Size: 77 KiB After Width: | Height: | Size: 77 KiB |
31
source/Bottle/prebuild.xml
Normal file
|
@ -0,0 +1,31 @@
|
|||
<Project name="Bottle"
|
||||
path="source/Bottle"
|
||||
language="C#"
|
||||
type="Exe"
|
||||
version="1.0.0"
|
||||
icon="icon/Bottle.ico">
|
||||
<Author>Tara Piccari (tarapiccari@gmail.com)</Author>
|
||||
<Description>C# Prebuild for code generation utilizing Json files as a resource</Description>
|
||||
<Configuration name="Debug">
|
||||
<Options>
|
||||
<OutputPath>../../bootstrap/debug/</OutputPath>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
||||
|
||||
</Options>
|
||||
</Configuration>
|
||||
<Configuration name="Release">
|
||||
<Options>
|
||||
<OutputPath>../../bootstrap/</OutputPath>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
||||
</Options>
|
||||
</Configuration>
|
||||
|
||||
|
||||
<Files>
|
||||
<File copyToOutput="always" preservePath="false">icon/Bottle.ico</File>
|
||||
<File copyToOutput="always" preservePath="false">icon/Bottle.png</File>
|
||||
</Files>
|
||||
|
||||
</Project>
|