Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added A2/Passport/Passport.v12.suo
Binary file not shown.
Binary file modified A2/Passport/Passport/bin/Debug/Passport.vshost.exe
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
E:\Информационная база Владимира Слобцова\Школота\УрФУ 2 курс\prog2015\A2\Passport\Passport\bin\Debug\Passport.exe.config
22 changes: 22 additions & 0 deletions Labs/A1/Laba1.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.31101.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Laba1", "Laba1\Laba1.csproj", "{D1D64E15-7FA7-4BF4-823E-DCDBC56C6873}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{D1D64E15-7FA7-4BF4-823E-DCDBC56C6873}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D1D64E15-7FA7-4BF4-823E-DCDBC56C6873}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D1D64E15-7FA7-4BF4-823E-DCDBC56C6873}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D1D64E15-7FA7-4BF4-823E-DCDBC56C6873}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
Binary file added Labs/A1/Laba1.v12.suo
Binary file not shown.
6 changes: 6 additions & 0 deletions Labs/A1/Laba1/App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>
32 changes: 32 additions & 0 deletions Labs/A1/Laba1/Cs.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Laba1
{
public class Cs
{


public int Power { get; set; }
public string Name { get; set; }

public string Surname { get; set; }

public Aura Type { get; set; }


}

public enum Aura
{
green,
dark,
blue,
orange,
white,
gold
}
}
296 changes: 296 additions & 0 deletions Labs/A1/Laba1/Form1.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading