-
Notifications
You must be signed in to change notification settings - Fork 0
/
rustyApp.rsproj
33 lines (33 loc) · 1.37 KB
/
rustyApp.rsproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">default</Platform>
<ProjectGuid>997da3e9-07ff-48c5-9de1-1bd1b963a947</ProjectGuid>
<OutputType>exe</OutputType>
<CrateName>rustyApp</CrateName>
<Name>rustyApp</Name>
<RootNamespace>rustyApp</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|default' ">
<LinkTimeOptimization>false</LinkTimeOptimization>
<DebugSymbols>true</DebugSymbols>
<OptimizationLevel>0</OptimizationLevel>
<PlatformTarget>default</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|default' ">
<LinkTimeOptimization>false</LinkTimeOptimization>
<DebugSymbols>false</DebugSymbols>
<OptimizationLevel>2</OptimizationLevel>
<PlatformTarget>default</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Folder Include="src\" />
<Code Include="src\main.rs" />
</ItemGroup>
<ItemGroup>
<File Include="src\vec_array1.rs" />
<File Include="src\tutorial_functions_more.rs" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\VisualRust\VisualRust.Rust.targets" />
</Project>