Skip to content

Commit

Permalink
Publish
Browse files Browse the repository at this point in the history
Publish
  • Loading branch information
onurtirpan committed Mar 26, 2014
0 parents commit 177d03a
Show file tree
Hide file tree
Showing 22 changed files with 1,529 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Auto detect text files and perform LF normalization
* text=auto

# Custom for Visual Studio
*.cs diff=csharp
*.sln merge=union
*.csproj merge=union
*.vbproj merge=union
*.fsproj merge=union
*.dbproj merge=union

# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
215 changes: 215 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,215 @@
#################
## Eclipse
#################

*.pydevproject
.project
.metadata
bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath

# External tool builders
.externalToolBuilders/

# Locally stored "Eclipse launch configurations"
*.launch

# CDT-specific
.cproject

# PDT-specific
.buildpath


#################
## Visual Studio
#################

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

# User-specific files
*.suo
*.user
*.sln.docstates

# Build results

[Dd]ebug/
[Rr]elease/
x64/
build/
[Bb]in/
[Oo]bj/

# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*

*_i.c
*_p.c
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.log
*.scc

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opensdf
*.sdf
*.cachefile

# Visual Studio profiler
*.psess
*.vsp
*.vspx

# Guidance Automation Toolkit
*.gpState

# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper

# TeamCity is a build add-in
_TeamCity*

# DotCover is a Code Coverage Tool
*.dotCover

# NCrunch
*.ncrunch*
.*crunch*.local.xml

# Installshield output folder
[Ee]xpress/

# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html

# Click-Once directory
publish/

# Publish Web Output
*.Publish.xml
*.pubxml

# NuGet Packages Directory
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
#packages/

# Windows Azure Build Output
csx
*.build.csdef

# Windows Store app package directory
AppPackages/

# Others
sql/
*.Cache
ClientBin/
[Ss]tyle[Cc]op.*
~$*
*~
*.dbmdl
*.[Pp]ublish.xml
*.pfx
*.publishsettings

# RIA/Silverlight projects
Generated_Code/

# Backup & report files from converting an old project file to a newer
# Visual Studio version. Backup files are not needed, because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm

# SQL Server files
App_Data/*.mdf
App_Data/*.ldf

#############
## Windows detritus
#############

# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Mac crap
.DS_Store


#############
## Python
#############

*.py[co]

# Packages
*.egg
*.egg-info
dist/
build/
eggs/
parts/
var/
sdist/
develop-eggs/
.installed.cfg

# Installer logs
pip-log.txt

# Unit test / coverage reports
.coverage
.tox

#Translations
*.mo

#Mr Developer
.mr.developer.cfg
40 changes: 40 additions & 0 deletions ProgressRingforWP.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.21005.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProgressRingforWP", "ProgressRingforWP\ProgressRingforWP.csproj", "{0F8FB345-04F3-4B2E-9894-E98A6E4B8B1B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|ARM = Debug|ARM
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|ARM = Release|ARM
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{0F8FB345-04F3-4B2E-9894-E98A6E4B8B1B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0F8FB345-04F3-4B2E-9894-E98A6E4B8B1B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0F8FB345-04F3-4B2E-9894-E98A6E4B8B1B}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{0F8FB345-04F3-4B2E-9894-E98A6E4B8B1B}.Debug|ARM.ActiveCfg = Debug|ARM
{0F8FB345-04F3-4B2E-9894-E98A6E4B8B1B}.Debug|ARM.Build.0 = Debug|ARM
{0F8FB345-04F3-4B2E-9894-E98A6E4B8B1B}.Debug|ARM.Deploy.0 = Debug|ARM
{0F8FB345-04F3-4B2E-9894-E98A6E4B8B1B}.Debug|x86.ActiveCfg = Debug|x86
{0F8FB345-04F3-4B2E-9894-E98A6E4B8B1B}.Debug|x86.Build.0 = Debug|x86
{0F8FB345-04F3-4B2E-9894-E98A6E4B8B1B}.Debug|x86.Deploy.0 = Debug|x86
{0F8FB345-04F3-4B2E-9894-E98A6E4B8B1B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0F8FB345-04F3-4B2E-9894-E98A6E4B8B1B}.Release|Any CPU.Build.0 = Release|Any CPU
{0F8FB345-04F3-4B2E-9894-E98A6E4B8B1B}.Release|Any CPU.Deploy.0 = Release|Any CPU
{0F8FB345-04F3-4B2E-9894-E98A6E4B8B1B}.Release|ARM.ActiveCfg = Release|ARM
{0F8FB345-04F3-4B2E-9894-E98A6E4B8B1B}.Release|ARM.Build.0 = Release|ARM
{0F8FB345-04F3-4B2E-9894-E98A6E4B8B1B}.Release|ARM.Deploy.0 = Release|ARM
{0F8FB345-04F3-4B2E-9894-E98A6E4B8B1B}.Release|x86.ActiveCfg = Release|x86
{0F8FB345-04F3-4B2E-9894-E98A6E4B8B1B}.Release|x86.Build.0 = Release|x86
{0F8FB345-04F3-4B2E-9894-E98A6E4B8B1B}.Release|x86.Deploy.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
20 changes: 20 additions & 0 deletions ProgressRingforWP/App.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Application
x:Class="ProgressRingforWP.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone">

<!--Application Resources-->
<Application.Resources>
<local:LocalizedStrings xmlns:local="clr-namespace:ProgressRingforWP" x:Key="LocalizedStrings"/>
</Application.Resources>

<Application.ApplicationLifetimeObjects>
<!--Required object that handles lifetime events for the application-->
<shell:PhoneApplicationService
Launching="Application_Launching" Closing="Application_Closing"
Activated="Application_Activated" Deactivated="Application_Deactivated"/>
</Application.ApplicationLifetimeObjects>

</Application>
Loading

0 comments on commit 177d03a

Please sign in to comment.