forked from dot42/samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimpleAnimation.csproj
More file actions
72 lines (72 loc) · 3.26 KB
/
SimpleAnimation.csproj
File metadata and controls
72 lines (72 loc) · 3.26 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.50727</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{96D5F848-62A4-71AD-A9E0-92B811210B4C}</ProjectGuid>
<ProjectTypeGuids>{337B7DB7-2D1E-448D-BEBF-17E887A46E37};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>SimpleAnimation</RootNamespace>
<AssemblyName>SimpleAnimation</AssemblyName>
<TargetFrameworkIdentifier>Android</TargetFrameworkIdentifier>
<TargetFrameworkVersion>v2.3.3</TargetFrameworkVersion>
<AndroidVersion>$(TargetFrameworkVersion)</AndroidVersion>
<SupportedCultures>
</SupportedCultures>
<ApkOutputs>true</ApkOutputs>
<GenerateAndroidManifest>true</GenerateAndroidManifest>
<ApkFilename>SimpleAnimation.apk</ApkFilename>
<PackageName>com.dot42.samples.SimpleAnimation</PackageName>
<Dot42ExtensionsPath Condition=" '$(Dot42ExtensionsPath)' == '' ">$(Registry:HKEY_CURRENT_USER\SOFTWARE\TallApplications\Dot42@ExtensionsPath)</Dot42ExtensionsPath>
<Dot42ExtensionsPath Condition=" '$(Dot42ExtensionsPath)' == '' ">$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\TallApplications\Dot42@ExtensionsPath)</Dot42ExtensionsPath>
<ApkCertificatePath>..\..\Samples.pfx</ApkCertificatePath>
<ApkCertificateThumbprint>A6146178A65E8690AB503F560C9C0EDBEB16ED8D</ApkCertificateThumbprint>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>Bin\Debug</OutputPath>
<DefineConstants>DEBUG;TRACE;DOT42</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>Bin\Release</OutputPath>
<DefineConstants>TRACE;DOT42</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Dot42" />
<Reference Include="mscorlib" />
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<Compile Include="MainActivity.cs" />
<Compile Include="Panel.cs" />
</ItemGroup>
<Import Project="$(Dot42ExtensionsPath)\Dot42.CSharp.targets" />
<ItemGroup>
<Compile Include="$(ResourcesGeneratedCodePath)R.cs" />
</ItemGroup>
<ItemGroup>
<DrawableResource Include="Resources\Icon-hdpi.png" />
<DrawableResource Include="Resources\Icon-ldpi.png" />
<DrawableResource Include="Resources\Icon-mdpi.png" />
</ItemGroup>
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild" DependsOnTargets="$(AfterBuildDependsOn)">
</Target>
<ProjectExtensions />
</Project>