Skip to content
Snippets Groups Projects
Commit d8e00c6f authored by Vesa Lappalainen's avatar Vesa Lappalainen :bicyclist:
Browse files

liva18 loppu

parent 984bce72
No related branches found
No related tags found
No related merge requests found
Showing
with 380 additions and 184 deletions
using System;
using System.Text;
using System.Linq;
using System.Collections.Generic;
using System.IO;
using System.Text.RegularExpressions;
/// @author Omanimi
/// @version Päivämäärä
/// <summary>
/// <pre>
/// Aluksi kysyy
/// Anna tulos>?????
/// APINA
/// KISSA
/// KETTU
/// KOIRA
/// ...
/// Anna arvaamasi kirjain>A
/// Anna tulos (?????) >A???A
/// APINA
/// Anna arvaamasi kirjain>I
/// Anna tulos >A?I?A
///
/// </pre>
/// </summary>
public class Hirsiauta
{
/// <summary>
///
/// </summary>
public static void Main(string[] args)
{
string nimi = "sanat.txt";
if (args.Length > 0) nimi = args[0];
string[] sanat = File.ReadAllLines(nimi);
StringBuilder kaytetyt = new StringBuilder();
string tulos = "";
string piste = ".";
while (true)
{
Console.Write($"Anna tulos ({tulos})>");
string t = Console.ReadLine();
if (t == null || t == "!") break;
if (t != "") tulos = t; // ?????
string maski = tulos.Replace("?", piste); // .....
Regex regex = new Regex("^" + maski + "$", RegexOptions.Compiled | RegexOptions.IgnoreCase);
foreach (string rivi in sanat)
{
Match match = regex.Match(rivi);
if (match.Success)
{
Console.WriteLine(rivi);
}
}
Console.Write("Anna arvaamasi kirjain >");
string kirjain = Console.ReadLine();
if (string.IsNullOrEmpty(kirjain) || kirjain == "!") break;
kirjain = kirjain.ToUpper();
kaytetyt.Append(kirjain);
piste = "[^" + kaytetyt + "]"; // [^is]
}
}
}
\ No newline at end of file
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ExternalConsole>true</ExternalConsole>
</PropertyGroup>
<ItemGroup>
<None Update="sanat.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
using System;
using System.Text;
using System.Linq;
using System.Collections.Generic;
/// @author vesal
/// @version 1.11.2016
......
KISSA
KOIRA
KANA
KETTU
MATO
TåI
File added
using System;
using System.Text;
using System.Linq;
using System.Collections.Generic;
using System.IO;
/// @author Omanimi
/// @version 31.10.2023
/// <summary>
///
/// </summary>
public class TiedostoIsoksi
{
/// <summary>
///
/// </summary>
public static void Main(string[] args)
{
string nimi = "kissa.txt";
if (args.Length > 0) nimi = args[0];
string[] luetutRivit = File.ReadAllLines(nimi);
foreach (string rivi in luetutRivit)
{
Console.WriteLine(rivi.ToUpper());
}
}
}
\ No newline at end of file
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ExternalConsole>true</ExternalConsole>
</PropertyGroup>
<ItemGroup>
<None Update="kissa.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
KISSA
KOIRA
KANA
KETTU
MATO
TÄI
kissa istuu
puussa
......@@ -2,6 +2,10 @@
Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Isoksi", "Isoksi\Isoksi.csproj", "{4DB0BEDE-9BA6-4ED7-AD98-022F2E103419}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TiedostoIsoksi", "TiedostoIsoksi\TiedostoIsoksi.csproj", "{F1101A7E-F603-495E-A5D3-4C9B6F0158B1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hirsiauta", "Hirsiauta\Hirsiauta.csproj", "{A2105128-2DA1-4E82-B286-A39022F05102}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
......@@ -12,5 +16,13 @@ Global
{4DB0BEDE-9BA6-4ED7-AD98-022F2E103419}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4DB0BEDE-9BA6-4ED7-AD98-022F2E103419}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4DB0BEDE-9BA6-4ED7-AD98-022F2E103419}.Release|Any CPU.Build.0 = Release|Any CPU
{F1101A7E-F603-495E-A5D3-4C9B6F0158B1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F1101A7E-F603-495E-A5D3-4C9B6F0158B1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F1101A7E-F603-495E-A5D3-4C9B6F0158B1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F1101A7E-F603-495E-A5D3-4C9B6F0158B1}.Release|Any CPU.Build.0 = Release|Any CPU
{A2105128-2DA1-4E82-B286-A39022F05102}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A2105128-2DA1-4E82-B286-A39022F05102}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A2105128-2DA1-4E82-B286-A39022F05102}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A2105128-2DA1-4E82-B286-A39022F05102}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
// ReSharper disable all
using System;
using System.Text;
using System.Linq;
using System.Collections.Generic;
using System.IO;
using System.Text.RegularExpressions;
using System.Globalization;
using System.Collections;
using NUnit.Framework;
using static Aika;
[TestFixture]
[DefaultFloatingPointTolerance(0.000001)]
public class TestAika
{
[Test]
public void TestYhdista88()
{
string[] aikarivit = {
"Olli Opiskelija; op25; 117356.tunnit; 2016-09-12 16:09:45.784837+00:00; 1; ",
"4",
"",
"----------------------------------------------------------------------------------",
"Olli Opiskelija; op21; 117356.tunnit; 2016-09-18 21:21:05.440732+00:00; 1; ",
"1 h",
"",
"----------------------------------------------------------------------------------",
"Olli Opiskelija; op3693; 117356.tunnit; 2016-09-11 19:21:19.272020+00:00; 1; ",
"3",
"",
"----------------------------------------------------------------------------------",
"Olli Opiskelija; op19; 117356.tunnit; 2016-09-11 16:01:48.799028+00:00; 1; ",
"5"
};
string[] pisterivit = {
"op19;d1;7",
"op21;d1;4",
"op25;d1;10",
"op13;d1;7",
};
string tulos =
"op25;d1;10;4\n" +
"op21;d1;4;1\n" +
"op19;d1;7;5";
var s = Yhdista(aikarivit, pisterivit);
Assert.AreEqual( tulos, String.Join("\n", s) , "in method Yhdista, line 119");
}
[Test]
public void TestErotaDouble176()
{
Assert.AreEqual( 0.0, ErotaDouble("") , 0.000001, "in method ErotaDouble, line 177");
Assert.AreEqual( 2.0, ErotaDouble("",2) , 0.000001, "in method ErotaDouble, line 178");
Assert.AreEqual( 2.3, ErotaDouble(" 2.3 ") , 0.000001, "in method ErotaDouble, line 179");
Assert.AreEqual( 5, ErotaDouble("5 3") , 0.000001, "in method ErotaDouble, line 180");
Assert.AreEqual( 5, ErotaDouble("5k3") , 0.000001, "in method ErotaDouble, line 181");
Assert.AreEqual( 5000, ErotaDouble("5e3") , 0.000001, "in method ErotaDouble, line 182");
Assert.AreEqual( 0.005, ErotaDouble("5E-3") , 0.000001, "in method ErotaDouble, line 183");
Assert.AreEqual( 0.0, ErotaDouble("k") , 0.000001, "in method ErotaDouble, line 184");
Assert.AreEqual( 1.0, ErotaDouble("k",1.0) , 0.000001, "in method ErotaDouble, line 185");
Assert.AreEqual( 0.0, ErotaDouble("2..3") , 0.000001, "in method ErotaDouble, line 186");
}
}
<?xml version="1.0" encoding="UTF-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{53BE42E0-A776-4668-8BF2-57D243BCAB9E}</ProjectGuid>
<OutputType>library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace/>
<AssemblyName>AikaTest</AssemblyName>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Reference Include="System"/>
<Reference Include="System.Core"/>
<Reference Include="System.Xml.Linq"/>
<Reference Include="System.Data.DataSetExtensions"/>
<Reference Include="Microsoft.CSharp"/>
<Reference Include="System.Data"/>
<Reference Include="System.Xml"/>
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"/>
</ItemGroup>
<ItemGroup>
<CodeAnalysisDependentAssemblyPaths
Condition=" '$(VS100COMNTOOLS)' != '' " Include="$(VS100COMNTOOLS)..\IDE\PrivateAssemblies">
<Visible>False</Visible>
</CodeAnalysisDependentAssemblyPaths>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs"/>
<Compile Include="AikaTest.cs"/>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets"/>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<ItemGroup>
<ProjectReference Include="..\Aika\Aika.csproj">
<Project>{7D748B4E-8542-48A8-A7EF-9E359590CBCF}</Project>
<Name>Aika</Name>
</ProjectReference>
</ItemGroup>
</Project>
// ReSharper disable all
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle( "AikaTest" )]
[assembly: AssemblyDescription( "" )]
[assembly: AssemblyConfiguration( "" )]
[assembly: AssemblyCompany( "Microsoft" )]
[assembly: AssemblyProduct( "AikaTest" )]
[assembly: AssemblyCopyright( "Copyright © Microsoft 2011" )]
[assembly: AssemblyTrademark( "" )]
[assembly: AssemblyCulture( "" )]
[assembly: ComVisible( false )]
[assembly: Guid( "53BE42E0-A776-4668-8BF2-57D243BCAB9E" )]
[assembly: AssemblyVersion( "1.0.0.0" )]
[assembly: AssemblyFileVersion( "1.0.0.0" )]
......@@ -59,6 +59,7 @@ public class Hirsiauta
Console.Write("Anna arvaamasi kirjain >");
string kirjain = Console.ReadLine() ?? "";
if (string.IsNullOrEmpty(kirjain) || kirjain == "!") break;
kirjain = kirjain.ToUpper();
kaytetyt.Append(kirjain);
piste = "[^" + kaytetyt + "]"; // tulee esim [^AUO]
......
// ReSharper disable all
using System;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;
using NUnit.Framework;
using static Jakauma;
using static Hirsiauta;
[TestFixture]
[DefaultFloatingPointTolerance(0.000001)]
public class TestJakauma
{
[Test]
public void TestAdd97()
{
Jakauma jakauma = new Jakauma();
jakauma.Add('a');
jakauma.Add('i');
jakauma.Add('a');
Assert.AreEqual( "a:2 i:1", jakauma.ToString(4) , "in method Add, line 102");
}
[Test]
public void TestAdd116()
{
Jakauma jakauma = new Jakauma("ei ");
jakauma.Add("kissa ei istu puussa");
Assert.AreEqual( "s:5 u:3 a:2 k:1 t:1 p:1", jakauma.ToString(10) , "in method Add, line 119");
}
[Test]
public void TestToString134()
{
Jakauma jakauma = new Jakauma(" ");
jakauma.Add("kissa ei istu puussa");
Assert.AreEqual( "s:5 i:3", jakauma.ToString(2) , "in method ToString, line 137");
}
}
<?xml version="1.0" encoding="UTF-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NUnit" Version="3.13.1"/>
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0"/>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Hirsiauta\Hirsiauta.csproj"/>
</ItemGroup>
</Project>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{4C5EDA3D-4BC6-448F-A215-3FC7349CF8D8}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Isoksi</RootNamespace>
<AssemblyName>Isoksi</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
<FileAlignment>512</FileAlignment>
<TargetFramework>net7.0</TargetFramework>
<ExternalConsole>true</ExternalConsole>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Isoksi.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
\ No newline at end of file
</Project>
......@@ -19,7 +19,7 @@ public class Kaino
/// </summary>
public static void Main(string[] args)
{
string nimi = "kotus.txt";
string nimi = "kotus.xml";
if (args.Length > 0) nimi = args[0];
string[] luetutRivit = File.ReadAllLines(nimi);
......
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{287A8FFB-8CF9-4984-8740-014BD81350D5}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Kaino</RootNamespace>
<AssemblyName>Kaino</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
<FileAlignment>512</FileAlignment>
<TargetFramework>net7.0</TargetFramework>
<ExternalConsole>true</ExternalConsole>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Kaino.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
\ No newline at end of file
</Project>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{CDEA852A-8283-4021-B286-ACE06EF6572E}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>TiedostoIsoksi</RootNamespace>
<AssemblyName>TiedostoIsoksi</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
<FileAlignment>512</FileAlignment>
<TargetFramework>net7.0</TargetFramework>
<ExternalConsole>true</ExternalConsole>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="TiedostoIsoksi.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
\ No newline at end of file
</Project>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment