Skip to content

Commit e5f8f37

Browse files
committed
v1.0.3
1 parent 9d0e3e4 commit e5f8f37

File tree

4 files changed

+30
-2
lines changed

4 files changed

+30
-2
lines changed

EduToolkit/EduToolkit.csproj

+5-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<UpdatePeriodically>false</UpdatePeriodically>
2424
<UpdateRequired>false</UpdateRequired>
2525
<MapFileExtensions>true</MapFileExtensions>
26-
<ApplicationRevision>1</ApplicationRevision>
26+
<ApplicationRevision>4</ApplicationRevision>
2727
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
2828
<UseApplicationTrust>false</UseApplicationTrust>
2929
<PublishWizardCompleted>true</PublishWizardCompleted>
@@ -126,6 +126,10 @@
126126
<Project>{2ab40003-cabd-4364-8690-3fe61b381a4c}</Project>
127127
<Name>JsonViewer</Name>
128128
</ProjectReference>
129+
<ProjectReference Include="..\..\SentencesToImages\SentencesToImages\SentencesToImages.csproj">
130+
<Project>{ac9007b5-0aa9-44e5-bd72-2dec615304e0}</Project>
131+
<Name>SentencesToImages</Name>
132+
</ProjectReference>
129133
</ItemGroup>
130134
<ItemGroup>
131135
<BootstrapperPackage Include=".NETFramework,Version=v4.6.1">

EduToolkit/EduToolkit.sln

+6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FlipDirPics", "..\..\FlipDi
1111
EndProject
1212
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JsonViewer", "..\..\JsonViewer\JsonViewer\JsonViewer.csproj", "{2AB40003-CABD-4364-8690-3FE61B381A4C}"
1313
EndProject
14+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SentencesToImages", "..\..\SentencesToImages\SentencesToImages\SentencesToImages.csproj", "{AC9007B5-0AA9-44E5-BD72-2DEC615304E0}"
15+
EndProject
1416
Global
1517
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1618
Debug|Any CPU = Debug|Any CPU
@@ -33,6 +35,10 @@ Global
3335
{2AB40003-CABD-4364-8690-3FE61B381A4C}.Debug|Any CPU.Build.0 = Debug|Any CPU
3436
{2AB40003-CABD-4364-8690-3FE61B381A4C}.Release|Any CPU.ActiveCfg = Release|Any CPU
3537
{2AB40003-CABD-4364-8690-3FE61B381A4C}.Release|Any CPU.Build.0 = Release|Any CPU
38+
{AC9007B5-0AA9-44E5-BD72-2DEC615304E0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
39+
{AC9007B5-0AA9-44E5-BD72-2DEC615304E0}.Debug|Any CPU.Build.0 = Debug|Any CPU
40+
{AC9007B5-0AA9-44E5-BD72-2DEC615304E0}.Release|Any CPU.ActiveCfg = Release|Any CPU
41+
{AC9007B5-0AA9-44E5-BD72-2DEC615304E0}.Release|Any CPU.Build.0 = Release|Any CPU
3642
EndGlobalSection
3743
GlobalSection(SolutionProperties) = preSolution
3844
HideSolutionNode = FALSE

EduToolkit/ToolkitSelector.Designer.cs

+14-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

EduToolkit/ToolkitSelector.cs

+5
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,10 @@ private void jsonViewerButton_Click(object sender, EventArgs e)
3131
{
3232
ApplicationQueue.InstanceAddFormQueue(new JsonViewer.JsonLoader());
3333
}
34+
35+
private void SentencesToImagesButton_Click(object sender, EventArgs e)
36+
{
37+
ApplicationQueue.InstanceAddFormQueue(new SentencesToImages.Form1());
38+
}
3439
}
3540
}

0 commit comments

Comments
 (0)